Skip to content

Commit

Permalink
Increased max audio volume
Browse files Browse the repository at this point in the history
  • Loading branch information
infval committed Nov 30, 2018
1 parent 303c4be commit c25b147
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.3
PSP_APP_VER=1.0.4

TARGET=potator
EXTRA_TARGETS=EBOOT.PBP
Expand Down
4 changes: 2 additions & 2 deletions PSP/emulate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ static void psp_audio_callback(pl_snd_sample* buf,
u8* b = bufU8;
int i;
for (i = 0; i < (int)samples; i++) {
buf[i].stereo.l = *(b++) << 8;
buf[i].stereo.r = *(b++) << 8;
buf[i].stereo.l = *(b++) << (8 + 1);
buf[i].stereo.r = *(b++) << (8 + 1);
}
}

0 comments on commit c25b147

Please sign in to comment.