fixed bug which caused gsp shared mem to never be unmapped when using gfx

This commit is contained in:
smea 2015-10-20 23:03:03 -07:00
parent 07d5367ed4
commit 89fc70f076

View File

@ -188,7 +188,7 @@ void gfxExit(void)
screenFree(gfxTopLeftFramebuffers[0]); screenFree(gfxTopLeftFramebuffers[0]);
//unmap GSP shared mem //unmap GSP shared mem
svcUnmapMemoryBlock(gspSharedMemHandle, 0x10002000); svcUnmapMemoryBlock(gspSharedMemHandle, (u32)gfxSharedMemory);
GSPGPU_UnregisterInterruptRelayQueue(); GSPGPU_UnregisterInterruptRelayQueue();