File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ static void KeyboardCommands() {
327327
328328 char shell_cmd_tmp[100 ];
329329 sprintf (shell_cmd_tmp, " %s %d \" DISPLAY MODE: %s\" " ,
330- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP, aspect_ratio_name[aspect_ratio]);
330+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP, aspect_ratio_name[aspect_ratio]);
331331 system (shell_cmd_tmp);
332332
333333 // Save config file
Original file line number Diff line number Diff line change @@ -856,7 +856,7 @@ void run_menu_loop()
856856
857857 // / ----- Hud Msg -----
858858 sprintf (shell_cmd, " %s %d \" SAVED IN SLOT %d\" " ,
859- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP, savestate_slot+1 );
859+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP, savestate_slot+1 );
860860 system (shell_cmd);
861861 stop_menu_loop = 1 ;
862862 }
@@ -885,11 +885,11 @@ void run_menu_loop()
885885 // / ----- Hud Msg -----
886886 if (quick_load_slot_chosen){
887887 sprintf (shell_cmd, " %s %d \" LOADED FROM AUTO SAVE\" " ,
888- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP);
888+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP);
889889 }
890890 else {
891891 sprintf (shell_cmd, " %s %d \" LOADED FROM SLOT %d\" " ,
892- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP, savestate_slot+1 );
892+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP, savestate_slot+1 );
893893 }
894894 system (shell_cmd);
895895
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ typedef enum {RESUME_OPTIONS} ENUM_RESUME_OPTIONS;
3535#define SHELL_CMD_VOLUME_SET "volume set"
3636#define SHELL_CMD_BRIGHTNESS_GET "brightness get"
3737#define SHELL_CMD_BRIGHTNESS_SET "brightness set"
38- #define SHELL_CMD_NOTIF "notif_set "
38+ #define SHELL_CMD_NOTIF_SET "notif set "
3939#define SHELL_CMD_AUDIO_AMP_ON "audio_amp on"
4040#define SHELL_CMD_AUDIO_AMP_OFF "audio_amp off"
4141#define SHELL_CMD_CANCEL_SCHED_POWERDOWN "cancel_sched_powerdown"
You can’t perform that action at this time.
0 commit comments