aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2014-12-22 04:10:25 +0200
committernotaz2014-12-23 03:48:01 +0200
commit03f55e6b49eb81d099f33b67ee6b5fa4620a54bc (patch)
tree5ac09a554aea8b2302980a0e819db75bb8ae6348 /frontend
parentde5a60c397c1ec31ed2a133230011fe241b2b953 (diff)
downloadpcsx_rearmed-03f55e6b49eb81d099f33b67ee6b5fa4620a54bc.tar.gz
pcsx_rearmed-03f55e6b49eb81d099f33b67ee6b5fa4620a54bc.tar.bz2
pcsx_rearmed-03f55e6b49eb81d099f33b67ee6b5fa4620a54bc.zip
drc: implement block addr list saving
should give better experience after savestate load
Diffstat (limited to 'frontend')
-rw-r--r--frontend/libretro.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index fa544fd..34e3b4e 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -303,8 +303,9 @@ void retro_get_system_av_info(struct retro_system_av_info *info)
/* savestates */
size_t retro_serialize_size(void)
{
- // it's currently 4380651 bytes, but have some reserved for future
- return 0x430000;
+ // it's currently 4380651-4397047 bytes,
+ // but have some reserved for future
+ return 0x440000;
}
struct save_fp {