notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c510f8
)
Fix main RAM size in retro_get_memory_size
author
retro-wertz
<retro-wertz@users.noreply.github.com>
Sun, 4 Aug 2019 23:39:22 +0000
(07:39 +0800)
committer
GitHub
<noreply@github.com>
Sun, 4 Aug 2019 23:39:22 +0000
(07:39 +0800)
PSX Main RAM should only by 2048KB
frontend/libretro.c
patch
|
blob
|
blame
|
history
diff --git
a/frontend/libretro.c
b/frontend/libretro.c
index
bdf0829
..
32f00dc
100644
(file)
--- a/
frontend/libretro.c
+++ b/
frontend/libretro.c
@@
-1323,7
+1323,7
@@
size_t retro_get_memory_size(unsigned id)
if (id == RETRO_MEMORY_SAVE_RAM)
return MCD_SIZE;
else if (id == RETRO_MEMORY_SYSTEM_RAM)
- return 0x2
1
0000;
+ return 0x2
0
0000;
else
return 0;
}