From 27f975666c8c14e5658ecc7e6967ccdf523bde8d Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 31 Jan 2022 19:32:44 +0100 Subject: [PATCH] Disable double hires on exit. A program being run afterwards might not even know about the existence of double hires. So it's our task to turn double hires off on exit. --- targettest/apple2/dhgrshow.c | 1 + 1 file changed, 1 insertion(+) diff --git a/targettest/apple2/dhgrshow.c b/targettest/apple2/dhgrshow.c index f0b37e461..8bc8bcebd 100644 --- a/targettest/apple2/dhgrshow.c +++ b/targettest/apple2/dhgrshow.c @@ -40,6 +40,7 @@ void main (void) } closedir (dir); + POKE (0xC05F, 0); tgi_uninstall (); videomode (old); }