From edc6474f273a0d60314b6ad38f696014967175d3 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Mon, 19 Jul 2021 18:20:58 +0200 Subject: [PATCH] save nvmem/flash files when stopping emu --- core/emulator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/core/emulator.cpp b/core/emulator.cpp index 352c14a19..7c9fa8149 100644 --- a/core/emulator.cpp +++ b/core/emulator.cpp @@ -598,6 +598,7 @@ void dc_stop() sh4_cpu.Stop(); rend_cancel_emu_wait(); emuThread.WaitToEnd(); + SaveRomFiles(); if (running) EventManager::event(Event::Pause); }