File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ uint32 S9xReadJoypad (int which1)
406
406
char shell_cmd[100 ];
407
407
FILE *fp;
408
408
sprintf (shell_cmd, " %s %d \" DISPLAY MODE: %s\" " ,
409
- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP, aspect_ratio_name[aspect_ratio]);
409
+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP, aspect_ratio_name[aspect_ratio]);
410
410
system (shell_cmd);
411
411
412
412
// Save config file
Original file line number Diff line number Diff line change @@ -876,7 +876,7 @@ void run_menu_loop()
876
876
877
877
// / ----- Hud Msg -----
878
878
sprintf (shell_cmd, " %s %d \" SAVED IN SLOT %d\" " ,
879
- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP, savestate_slot+1 );
879
+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP, savestate_slot+1 );
880
880
system (shell_cmd);
881
881
stop_menu_loop = 1 ;
882
882
}
@@ -904,11 +904,11 @@ void run_menu_loop()
904
904
// / ----- Hud Msg -----
905
905
if (quick_load_slot_chosen){
906
906
sprintf (shell_cmd, " %s %d \" LOADED FROM AUTO SAVE\" " ,
907
- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP);
907
+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP);
908
908
}
909
909
else {
910
910
sprintf (shell_cmd, " %s %d \" LOADED FROM SLOT %d\" " ,
911
- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP, savestate_slot+1 );
911
+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP, savestate_slot+1 );
912
912
}
913
913
system (shell_cmd);
914
914
stop_menu_loop = 1 ;
Original file line number Diff line number Diff line change @@ -176,8 +176,8 @@ typedef enum {RESUME_OPTIONS} ENUM_RESUME_OPTIONS;
176
176
#define SHELL_CMD_VOLUME_SET "volume set"
177
177
#define SHELL_CMD_BRIGHTNESS_GET "brightness get"
178
178
#define SHELL_CMD_BRIGHTNESS_SET "brightness set"
179
- #define SHELL_CMD_NOTIF "notif_set "
180
- #define SHELL_CMD_NOTIF_CLEAR "notif_clear "
179
+ #define SHELL_CMD_NOTIF_SET "notif set "
180
+ #define SHELL_CMD_NOTIF_CLEAR "notif clear "
181
181
#define SHELL_CMD_AUDIO_AMP_ON "audio_amp on"
182
182
#define SHELL_CMD_AUDIO_AMP_OFF "audio_amp off"
183
183
#define SHELL_CMD_CANCEL_SCHED_POWERDOWN "cancel_sched_powerdown"
You can’t perform that action at this time.
0 commit comments