Fix more warnings.

Change-Id: Ib3a9fc622a46b1fc72e94dcbc6d29d2e430cd81b
This commit is contained in:
Solomon Peachy 2020-10-13 14:43:29 -04:00
parent 431caa4311
commit b94db707fb
11 changed files with 41 additions and 19 deletions

View file

@ -103,10 +103,14 @@ int button_read_device(void)
int btn = BUTTON_NONE;
#endif /* (SAMSUNG_YH920) || (SAMSUNG_YH925) */
static bool hold_button = false;
#ifndef BOOTLOADER
bool hold_button_old;
#endif
/* Hold */
#ifndef BOOTLOADER
hold_button_old = hold_button;
#endif
hold_button = button_hold();
#ifndef BOOTLOADER