summaryrefslogtreecommitdiff
path: root/src/core/hle/function_wrappers.h
diff options
context:
space:
mode:
authorGravatar bunnei2015-05-18 08:04:22 -0400
committerGravatar bunnei2015-05-18 08:04:22 -0400
commit1b47da41153c9955749ea23bea884d4f22f32b5a (patch)
tree32411f02f951bc8ca58f0028676a45de12c05d55 /src/core/hle/function_wrappers.h
parentMerge pull request #787 from Subv/default_attributes_fallback (diff)
parentImplement svcBreak (diff)
downloadyuzu-1b47da41153c9955749ea23bea884d4f22f32b5a.tar.gz
yuzu-1b47da41153c9955749ea23bea884d4f22f32b5a.tar.xz
yuzu-1b47da41153c9955749ea23bea884d4f22f32b5a.zip
Merge pull request #785 from archshift/break
Implement svcBreak
Diffstat (limited to 'src/core/hle/function_wrappers.h')
-rw-r--r--src/core/hle/function_wrappers.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h
index 0e5ae29ae..23c86a72d 100644
--- a/src/core/hle/function_wrappers.h
+++ b/src/core/hle/function_wrappers.h
@@ -166,6 +166,10 @@ template<void func(const char*)> void Wrap() {
166 func((char*)Memory::GetPointer(PARAM(0))); 166 func((char*)Memory::GetPointer(PARAM(0)));
167} 167}
168 168
169template<void func(u8)> void Wrap() {
170 func((u8)PARAM(0));
171}
172
169#undef PARAM 173#undef PARAM
170#undef FuncReturn 174#undef FuncReturn
171 175