(T7) Finally fixed SRAM save

This commit is contained in:
Ray The Fox 2024-08-04 22:57:59 -03:00
parent a5654d9c38
commit 7f50eb2c20
2 changed files with 2 additions and 2 deletions

View file

@ -856,7 +856,7 @@ char *emu_get_save_fname(int load, int is_sram, int slot, int *time)
{
strcpy(ext, (PicoIn.AHW & PAHW_MCD) ? ".brm" : ".srm");
romfname_ext(saveFname, sizeof(static_buff),
(PicoIn.AHW & PAHW_MCD) ? "brm"PATH_SEP : "srm"PATH_SEP, ext);
(PicoIn.AHW & PAHW_MCD) ? "ms0:/PSP/SAVEDATA/SUGC/brm"PATH_SEP : "ms0:/PSP/SAVEDATA/SUGC/srm"PATH_SEP, ext);
if (!load)
return saveFname;

View file

@ -1 +1 @@
#define VERSION "T6"
#define VERSION "T7"