aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.c
diff options
context:
space:
mode:
authornotaz2014-12-09 23:06:47 +0200
committernotaz2014-12-20 02:57:25 +0200
commitbcfc48e326fd502e77654330ce4b902e7db8c2dc (patch)
treef5712e1f0a4d422ef9026a91f00aaba06c9c93f2 /frontend/main.c
parent55e5626b063b3fbfc29576c2ee6b826d4f22d3d2 (diff)
downloadpcsx_rearmed-bcfc48e326fd502e77654330ce4b902e7db8c2dc.tar.gz
pcsx_rearmed-bcfc48e326fd502e77654330ce4b902e7db8c2dc.tar.bz2
pcsx_rearmed-bcfc48e326fd502e77654330ce4b902e7db8c2dc.zip
frontend: update libpicofe
Diffstat (limited to 'frontend/main.c')
-rw-r--r--frontend/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/main.c b/frontend/main.c
index 2ef5f52..1caec4b 100644
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -251,7 +251,11 @@ do_state_slot:
}
case SACTION_VOLUME_UP:
case SACTION_VOLUME_DOWN:
- plat_target_step_volume(emu_action == SACTION_VOLUME_UP);
+ {
+ static int volume;
+ plat_target_step_volume(&volume,
+ emu_action == SACTION_VOLUME_UP ? 1 : -1);
+ }
return;
case SACTION_MINIMIZE:
if (GPU_close != NULL)