mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-07 13:45:03 -05:00
No need to call the same function twice
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25458 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8802482e3e
commit
ba7501513a
1 changed files with 4 additions and 3 deletions
|
|
@ -1326,9 +1326,10 @@ static void set_hotkey(bool is_wps)
|
|||
char **line2_ptr = &line2;
|
||||
const struct text_message message={(const char **)line1_ptr, 1};
|
||||
const struct text_message yes_message={(const char **)line2_ptr, 1};
|
||||
|
||||
snprintf(line1, sizeof(line1_buf), str(LANG_SET_HOTKEY_QUESTION), str(this_id));
|
||||
snprintf(line2, sizeof(line2_buf), str(LANG_HOTKEY_ASSIGNED), str(this_id));
|
||||
char *func_name = str(this_id);
|
||||
|
||||
snprintf(line1, sizeof(line1_buf), str(LANG_SET_HOTKEY_QUESTION), func_name);
|
||||
snprintf(line2, sizeof(line2_buf), str(LANG_HOTKEY_ASSIGNED), func_name);
|
||||
|
||||
/* confirm the hotkey setting change */
|
||||
if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue