From 87b67216b0eac5855a801b4fd940842aff54b6cb Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 20 Dec 2017 21:54:54 -0600 Subject: [PATCH] Default to lo-res mode --- src/apple2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/apple2.c b/src/apple2.c index 190a5c9..2289b5f 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -58,6 +58,9 @@ apple2_create(int width, int height) return NULL; } + // We default to lo-res mode. + apple2_set_video(mach, VIDEO_LORES); + return mach; }