Skip to content

Commit

Permalink
Update core 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
infval committed Aug 1, 2019
1 parent 219e45d commit 5963293
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.psp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions common/sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion common/supervision.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5963293

Please sign in to comment.