From 911f72b2299ec654178af0b4e4fbbd3f870779b3 Mon Sep 17 00:00:00 2001 From: Oxore Date: Thu, 20 Oct 2022 01:10:34 +0300 Subject: Fix buffer overflow access, continue implementing graphics --- emulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emulator.cpp') diff --git a/emulator.cpp b/emulator.cpp index 70927bd..7ce5f60 100644 --- a/emulator.cpp +++ b/emulator.cpp @@ -484,7 +484,7 @@ int emulator(M68KDebuggingControl& m68k_debug, Graphics& graphics) } if (m68k_debug.IsRunning()) { do { - m68k_execute(1000000); + m68k_execute(10000); } while(!g_vdp.Scanline()); graphics.Render(g_vdp); } -- cgit v1.2.3