aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-28 21:20:00 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-28 21:20:00 -0400
commit9fd5d6c7d81053e05b3b4218bdee2575cd1f3fd0 (patch)
treedfaf077de27b4061756887b2e16359ed2be2401d /src/core/hle/hle.h
parent46aef01d0431253a4aa17b31b85cb35603a036ec (diff)
hle: removed PARAM64 macro (this was incorrect), made several bug fixes accordingly for decoding U64 function parameters
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index c075147c..c31e273b 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -10,7 +10,6 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
#define PARAM(n) Core::g_app_core->GetReg(n)
-#define PARAM64(n) (Core::g_app_core->GetReg(n) | ((u64)Core::g_app_core->GetReg(n + 1) << 32))
#define RETURN(n) Core::g_app_core->SetReg(0, n)
////////////////////////////////////////////////////////////////////////////////////////////////////