From 91291be8893b31033f91e2a3f09c86feba18a88b Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 7 Mar 2018 00:19:51 -0600 Subject: [PATCH] Draw the full screen at boot time to emulate initial look Which is to say, the initial look of @ symbols filling up your screen. --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index d736b7e..ea42513 100644 --- a/src/main.c +++ b/src/main.c @@ -47,7 +47,6 @@ init(int argc, char **argv) vm_di_set(VM_OUTPUT, stdout); - // We're literally using stdout in this heavy phase of development. log_open(stdout); if (vm_screen_init() != OK) { @@ -119,6 +118,8 @@ main(int argc, char **argv) exit(1); } + apple2_draw_40col(mach); + // This will run for as long as we want to hang out in the emulated // machine. apple2_run_loop(mach);