From b97af6cb1693dbd425b7ae2d857d1c949e995f3d Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Mon, 22 Jan 2018 21:43:01 -0600 Subject: [PATCH] Disable active refresh --- src/apple2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apple2.c b/src/apple2.c index 5c3f770..8181912 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -324,8 +324,8 @@ apple2_run_loop(apple2 *mach) while (vm_screen_active(mach->screen)) { mos6502_dis_opcode(mach->cpu, stdout, mach->cpu->PC); mos6502_execute(mach->cpu); - apple2_draw_40col(mach); - vm_screen_refresh(mach->screen); +// apple2_draw_40col(mach); +// vm_screen_refresh(mach->screen); } }