mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-16 19:07:58 -05:00
HLE/SVC: Implement UnmapMemoryBlock.
This implementation will need to be (almost completely) changed when we implement multiprocess support.
This commit is contained in:
@ -188,6 +188,10 @@ template<ResultCode func(s64*, Handle, u32)> void Wrap() {
|
||||
FuncReturn(retval);
|
||||
}
|
||||
|
||||
template<ResultCode func(Handle, u32)> void Wrap() {
|
||||
FuncReturn(func(PARAM(0), PARAM(1)).raw);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Function wrappers that return type u32
|
||||
|
||||
|
Reference in New Issue
Block a user