gint: disable restart on fx-CP

There is no return-to-menu so enabling it would just loop.
This commit is contained in:
Lephe 2024-06-04 17:58:16 +02:00
parent f70f1d9ae3
commit da05e89b1c
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -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() */