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 @@ -207,7 +207,7 @@ static int cmd_aspectratiochange(int argc, char **argv)
207207
208208 /// ----- Hud Msg -----
209209 sprintf (shell_cmd , "%s %d \" DISPLAY MODE: %s\"" ,
210- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP , aspect_ratio_name [aspect_ratio ]);
210+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP , aspect_ratio_name [aspect_ratio ]);
211211
212212 fp = popen (shell_cmd , "r" );
213213 if (fp == NULL )
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ typedef enum {RESUME_OPTIONS} ENUM_RESUME_OPTIONS;
5151#define SHELL_CMD_VOLUME_SET "volume set"
5252#define SHELL_CMD_BRIGHTNESS_GET "brightness get"
5353#define SHELL_CMD_BRIGHTNESS_SET "brightness set"
54- #define SHELL_CMD_NOTIF "notif_set "
54+ #define SHELL_CMD_NOTIF_SET "notif set "
5555#define SHELL_CMD_AUDIO_AMP_ON "audio_amp on"
5656#define SHELL_CMD_AUDIO_AMP_OFF "audio_amp off"
5757#define SHELL_CMD_CANCEL_SCHED_POWERDOWN "cancel_sched_powerdown"
Original file line number Diff line number Diff line change @@ -854,7 +854,7 @@ void run_menu_loop()
854854
855855 /// ----- Hud Msg -----
856856 sprintf (shell_cmd , "%s %d \" SAVED IN SLOT %d\"" ,
857- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP , saveslot + 1 );
857+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP , saveslot + 1 );
858858 system (shell_cmd );
859859 stop_menu_loop = 1 ;
860860 }
@@ -882,11 +882,11 @@ void run_menu_loop()
882882 /// ----- Hud Msg -----
883883 if (quick_load_slot_chosen ){
884884 sprintf (shell_cmd , "%s %d \" LOADED FROM AUTO SAVE\"" ,
885- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP );
885+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP );
886886 }
887887 else {
888888 sprintf (shell_cmd , "%s %d \" LOADED FROM SLOT %d\"" ,
889- SHELL_CMD_NOTIF , NOTIF_SECONDS_DISP , saveslot + 1 );
889+ SHELL_CMD_NOTIF_SET , NOTIF_SECONDS_DISP , saveslot + 1 );
890890 }
891891 system (shell_cmd );
892892 stop_menu_loop = 1 ;
You can’t perform that action at this time.
0 commit comments