Skip to content

Commit

Permalink
fixed bug which caused gsp shared mem to never be unmapped when using…
Browse files Browse the repository at this point in the history
… gfx
  • Loading branch information
smealum committed Oct 21, 2015
1 parent 07d5367 commit 89fc70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libctru/source/gfx.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void gfxExit(void)
screenFree(gfxTopLeftFramebuffers[0]);

//unmap GSP shared mem
svcUnmapMemoryBlock(gspSharedMemHandle, 0x10002000);
svcUnmapMemoryBlock(gspSharedMemHandle, (u32)gfxSharedMemory);

GSPGPU_UnregisterInterruptRelayQueue();

Expand Down

0 comments on commit 89fc70f

Please sign in to comment.