diff --git a/Makefile.psp b/Makefile.psp index c98eded..6d18782 100644 --- a/Makefile.psp +++ b/Makefile.psp @@ -7,7 +7,7 @@ PSP_FW_VERSION=200 export PSP_FW_VERSION PSP_APP_NAME=Potator PSP -PSP_APP_VER=1.0.5 +PSP_APP_VER=1.0.6 TARGET=potator EXTRA_TARGETS=EBOOT.PBP diff --git a/common/sound.c b/common/sound.c index 509f01b..8c4b95b 100644 --- a/common/sound.c +++ b/common/sound.c @@ -322,6 +322,9 @@ void sound_save_state(FILE *fp) void sound_load_state(FILE *fp) { int i; + + sound_reset(); + for (i = 0; i < 2; i++) { fread(m_channel[i].reg, sizeof(m_channel[i].reg), 1, fp); #define X(type, member) READ_##type(m_channel[i].member, fp); diff --git a/common/supervision.h b/common/supervision.h index 9055c9c..43e88d0 100644 --- a/common/supervision.h +++ b/common/supervision.h @@ -11,7 +11,7 @@ extern "C" { #endif -#define SV_CORE_VERSION 0x01000004U +#define SV_CORE_VERSION 0x01000005U #define SV_CORE_VERSION_MAJOR ((SV_CORE_VERSION >> 24) & 0xFF) #define SV_CORE_VERSION_MINOR ((SV_CORE_VERSION >> 12) & 0xFFF) #define SV_CORE_VERSION_PATCH ((SV_CORE_VERSION >> 0) & 0xFFF)