aboutsummaryrefslogtreecommitdiff
path: root/frontend/libretro.c
diff options
context:
space:
mode:
authortwinaphex2014-12-31 11:43:39 +0100
committertwinaphex2014-12-31 11:43:39 +0100
commitbe1294d017cba3f18cf66597f0cbed207fed26bf (patch)
tree84856d7c7fb7357ed94f8748d649060b7a83274a /frontend/libretro.c
parente63a9dc66d0ce5a9d88353f880ef88a6590d06fd (diff)
parent3aba41853f8dc014ff61e05e8a2c616d89f88715 (diff)
downloadpcsx_rearmed-be1294d017cba3f18cf66597f0cbed207fed26bf.tar.gz
pcsx_rearmed-be1294d017cba3f18cf66597f0cbed207fed26bf.tar.bz2
pcsx_rearmed-be1294d017cba3f18cf66597f0cbed207fed26bf.zip
Merge https://github.com/notaz/pcsx_rearmed
Diffstat (limited to 'frontend/libretro.c')
-rw-r--r--frontend/libretro.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index fa544fd..b636f49 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -283,7 +283,7 @@ void retro_get_system_info(struct retro_system_info *info)
{
memset(info, 0, sizeof(*info));
info->library_name = "PCSX-ReARMed";
- info->library_version = "r19";
+ info->library_version = "r20";
info->valid_extensions = "bin|cue|img|mdf|pbp|toc|cbn|m3u";
info->need_fullpath = true;
}
@@ -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 {