From f67a2ff0c28e375768db63861278c39298bbc359 Mon Sep 17 00:00:00 2001 From: Lord-Nightmare Date: Sun, 23 Aug 2015 02:58:41 -0400 Subject: [PATCH] fix startup crash on running any system using floppy.c (nw) --- src/emu/imagedev/floppy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/imagedev/floppy.c b/src/emu/imagedev/floppy.c index 7c01f58a09d..01d2872a9a7 100644 --- a/src/emu/imagedev/floppy.c +++ b/src/emu/imagedev/floppy.c @@ -1117,6 +1117,7 @@ void floppy_sound_device::device_start() // Initialize position m_samplepos_step = m_samplestart_step; m_samplepos_motor = m_samplestart_motor; + register_for_save_states(); } void floppy_sound_device::motor(bool state)