summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mess/drivers/gp32.c2
-rw-r--r--src/mess/machine/smartmed.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/drivers/gp32.c b/src/mess/drivers/gp32.c
index a8d22d4f06b..5269779d201 100644
--- a/src/mess/drivers/gp32.c
+++ b/src/mess/drivers/gp32.c
@@ -1756,6 +1756,8 @@ static MACHINE_CONFIG_START( gp32, gp32_state )
MCFG_NVRAM_ADD_1FILL("nvram")
MCFG_SMARTMEDIA_ADD("smartmedia")
+
+ MCFG_SOFTWARE_LIST_ADD("memc_list","gp32")
MACHINE_CONFIG_END
ROM_START( gp32 )
diff --git a/src/mess/machine/smartmed.h b/src/mess/machine/smartmed.h
index c20ca010453..60188cbc7ff 100644
--- a/src/mess/machine/smartmed.h
+++ b/src/mess/machine/smartmed.h
@@ -155,7 +155,7 @@ public:
virtual bool is_creatable() const { return 0; }
virtual bool must_be_loaded() const { return 0; }
virtual bool is_reset_on_load() const { return 0; }
- virtual const char *image_interface() const { return m_image_interface; }
+ virtual const char *image_interface() const { return "sm_memc"; }
virtual const char *file_extensions() const { return "smc"; }
virtual const option_guide *create_option_guide() const { return NULL; }