From 700409281db7551c66266e8b6f2b69ed2acb6b1e Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 12 Sep 2021 21:20:13 +0200 Subject: [PATCH] hopefully should fix the crashes on exit --- src/mame.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame.c b/src/mame.c index b723cb2..7cbf44d 100644 --- a/src/mame.c +++ b/src/mame.c @@ -681,7 +681,8 @@ static void shutdown_machine(void) chd_close_all(); /* reset the CPU system */ - cpu_exit(); + // commented out for causing memory access nonsense + // cpu_exit(); /* close down the input system */ code_close();