diff options
author | Oxore <oxore@protonmail.com> | 2022-10-20 01:10:34 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2022-10-20 01:10:34 +0300 |
commit | 911f72b2299ec654178af0b4e4fbbd3f870779b3 (patch) | |
tree | 35590d16197a05a79872118d2837cb3a9b5a9f21 /emulator.cpp | |
parent | eddd0a826b1720c26b0ac5df0269db3982bc8f35 (diff) |
Fix buffer overflow access, continue implementing graphics
Diffstat (limited to 'emulator.cpp')
-rw-r--r-- | emulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |