mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
gint: disable restart on fx-CP
There is no return-to-menu so enabling it would just loop.
This commit is contained in:
parent
f70f1d9ae3
commit
da05e89b1c
1 changed files with 2 additions and 1 deletions
|
@ -42,7 +42,8 @@ int8_t gint_restart = 0;
|
|||
/* gint_setrestart(): Set whether to restart the add-in after exiting */
|
||||
void gint_setrestart(int restart)
|
||||
{
|
||||
gint_restart = !!restart;
|
||||
/* There is now return-to-menu so no restart on CP */
|
||||
gint_restart = restart && !GINT_OS_CP;
|
||||
}
|
||||
|
||||
/* Return value of main() */
|
||||
|
|
Loading…
Add table
Reference in a new issue