1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-25 12:29:34 +00:00

Draw the full screen at boot time to emulate initial look

Which is to say, the initial look of @ symbols filling up your screen.
This commit is contained in:
Peter Evans 2018-03-07 00:19:51 -06:00
parent b2df144850
commit 91291be889

View File

@ -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);