1
0
Fork 0
forked from len0rd/rockbox

code cleanup encase ;; in brackets {;;}

Change-Id: I253e19695709b4184ceb4a0748300f7c68437c1c
This commit is contained in:
William Wilgus 2021-08-13 07:46:45 -04:00 committed by William Wilgus
parent da97524252
commit aad15d5cd7
3 changed files with 4 additions and 4 deletions

View file

@ -571,7 +571,7 @@ static bool confirm_quit(void)
{ (const char*[]) {"Quit?", "Progress will be lost"}, 2};
enum yesno_res response = rb->gui_syncyesno_run(&prompt, NULL, NULL);
while (rb->button_get(false) == BUTTON_NONE)
;;
{;;}
if(response == YESNO_NO)
return false;
@ -2286,7 +2286,7 @@ static bool free_slide_prio(int prio)
static void free_all_slide_prio(int prio)
{
while (free_slide_prio(prio))
;;
{;;}
}