Skip to content

Commit

Permalink
Libretro fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Jul 24, 2022
1 parent d3d601d commit f9a2545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libretro/libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,7 @@ bool retro_unserialize(const void *data, size_t size)
void *retro_get_memory_data(unsigned id)
{
if ( id == RETRO_MEMORY_SYSTEM_RAM )
return Memory::GetPointerUnchecked(PSP_GetKernelMemoryBase()) ;
return Memory::GetPointerWriteUnchecked(PSP_GetKernelMemoryBase()) ;
return NULL;
}

Expand Down

0 comments on commit f9a2545

Please sign in to comment.