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)
406406 char shell_cmd[100 ];
407407 FILE *fp;
408408 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]);
410410 system (shell_cmd);
411411
412412 // Save config file
Original file line number Diff line number Diff line change @@ -876,7 +876,7 @@ void run_menu_loop()
876876
877877 // / ----- Hud Msg -----
878878 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 );
880880 system (shell_cmd);
881881 stop_menu_loop = 1 ;
882882 }
@@ -904,11 +904,11 @@ void run_menu_loop()
904904 // / ----- Hud Msg -----
905905 if (quick_load_slot_chosen){
906906 sprintf (shell_cmd, " %s %d \" LOADED FROM AUTO SAVE\" " ,
907- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP);
907+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP);
908908 }
909909 else {
910910 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 );
912912 }
913913 system (shell_cmd);
914914 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;
176176#define SHELL_CMD_VOLUME_SET "volume set"
177177#define SHELL_CMD_BRIGHTNESS_GET "brightness get"
178178#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 "
181181#define SHELL_CMD_AUDIO_AMP_ON "audio_amp on"
182182#define SHELL_CMD_AUDIO_AMP_OFF "audio_amp off"
183183#define SHELL_CMD_CANCEL_SCHED_POWERDOWN "cancel_sched_powerdown"
You can’t perform that action at this time.
0 commit comments