Shut down P96 mode on emulator reset

Prevents cases where it tried to draw the status line on RTG when that didn't exist
This commit is contained in:
Dimitris Panokostas 2020-07-10 23:11:03 +02:00
parent f9ff3c5b90
commit 7a91d62d22

View file

@ -573,6 +573,10 @@ void uae_reset(int hardreset, int keyboardreset)
if (hardreset)
quit_program = -UAE_RESET_HARD;
}
struct amigadisplay* ad = &adisplays;
ad->picasso_requested_on = 0;
ad->picasso_on = 0;
screen_is_picasso = 0;
}
void uae_quit(void)