meta: fix uninitialized command-line argument logic

This commit is contained in:
Lephenixnoir 2022-04-05 11:10:33 +01:00
parent 45888eb01c
commit d61f4e0a2f
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ int main(int argc, char **argv)
/* Stores whether we have already idled once, handling extra rom
* and execute options */
bool has_idled;
bool has_idled = false;
/* Shell main loop */
while(true) {