1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

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.
This commit is contained in:
Oliver Schmidt 2022-01-31 19:32:44 +01:00 committed by mrdudz
parent 103d3ccfcd
commit 27f975666c

View File

@ -40,6 +40,7 @@ void main (void)
}
closedir (dir);
POKE (0xC05F, 0);
tgi_uninstall ();
videomode (old);
}