Skip to content
Snippets Groups Projects
Commit 2f55c9e5 authored by bunnei's avatar bunnei
Browse files

svc: added missing function wrapper for SleepThread

parent 7dd18a8d
No related branches found
No related tags found
No related merge requests found
......@@ -642,6 +642,10 @@ template<void func(const char*)> void WrapV_C() {
func(Memory::GetCharPointer(PARAM(0)));
}
template<void func(s64)> void WrapV_S64() {
func(((s64)PARAM(1) << 32) | PARAM(0));
}
template<void func(const char *, int)> void WrapV_CI() {
func(Memory::GetCharPointer(PARAM(0)), PARAM(1));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment