summaryrefslogtreecommitdiff
path: root/src/core/hle/function_wrappers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/function_wrappers.h')
-rw-r--r--src/core/hle/function_wrappers.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h
index aa5278c8a..0bed78653 100644
--- a/src/core/hle/function_wrappers.h
+++ b/src/core/hle/function_wrappers.h
@@ -10,6 +10,9 @@
10 10
11namespace HLE { 11namespace HLE {
12 12
13#define PARAM(n) Core::g_app_core->GetReg(n)
14#define RETURN(n) Core::g_app_core->SetReg(0, n)
15
13//////////////////////////////////////////////////////////////////////////////////////////////////// 16////////////////////////////////////////////////////////////////////////////////////////////////////
14// Function wrappers that return type s32 17// Function wrappers that return type s32
15 18
@@ -105,4 +108,7 @@ template<void func(const char*)> void Wrap() {
105 func(Memory::GetCharPointer(PARAM(0))); 108 func(Memory::GetCharPointer(PARAM(0)));
106} 109}
107 110
111#undef PARAM
112#undef RETURN
113
108} // namespace HLE 114} // namespace HLE