mirror of
https://github.com/LumaTeam/Luma3DS.git
synced 2026-02-22 01:44:38 +00:00
rosalina: fix wrong args in svcControlMemoryEx
This commit is contained in:
parent
ab7e8676b5
commit
9f933954a0
@ -140,7 +140,7 @@ Result Draw_AllocateFramebufferCache(u32 size)
|
||||
if (framebufferCache != NULL)
|
||||
__builtin_trap();
|
||||
|
||||
Result res = svcControlMemoryEx(&tmp, addr, 0, size, MEMOP_ALLOC, MEMREGION_SYSTEM | MEMPERM_READWRITE, true);
|
||||
Result res = svcControlMemoryEx(&tmp, addr, 0, size, MEMOP_ALLOC | MEMOP_REGION_SYSTEM, MEMPERM_READWRITE, true);
|
||||
if (R_FAILED(res))
|
||||
{
|
||||
framebufferCache = NULL;
|
||||
|
||||
@ -110,7 +110,7 @@ Result miniSocInit(void)
|
||||
ret = srvGetServiceHandle(&miniSocHandle, "soc:U");
|
||||
if(ret != 0) goto cleanup;
|
||||
|
||||
ret = svcControlMemoryEx(&tmp, socContextAddr, 0, socContextSize, MEMOP_ALLOC, MEMREGION_SYSTEM | MEMPERM_READ | MEMPERM_WRITE, true);
|
||||
ret = svcControlMemoryEx(&tmp, socContextAddr, 0, socContextSize, MEMOP_ALLOC | MEMOP_REGION_SYSTEM, MEMPERM_READ | MEMPERM_WRITE, true);
|
||||
if(ret != 0) goto cleanup;
|
||||
|
||||
socContextAddr = tmp;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user