summaryrefslogtreecommitdiffstats
path: root/src/emu/softlist_dev.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/softlist_dev.h')
-rw-r--r--src/emu/softlist_dev.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/softlist_dev.h b/src/emu/softlist_dev.h
index 7f6649e1fb7..7921d751348 100644
--- a/src/emu/softlist_dev.h
+++ b/src/emu/softlist_dev.h
@@ -47,11 +47,11 @@ enum software_compatibility
downcast<software_list_device &>(*device).set_type(_list, _list_type);
#define MCFG_SOFTWARE_LIST_ADD( _tag, _list ) \
- MCFG_DEVICE_ADD( _tag, SOFTWARE_LIST, 0 ) \
+ MCFG_DEVICE_ADD( _tag, SOFTWARE_LIST ) \
MCFG_SOFTWARE_LIST_CONFIG(_list, SOFTWARE_LIST_ORIGINAL_SYSTEM)
#define MCFG_SOFTWARE_LIST_COMPATIBLE_ADD( _tag, _list ) \
- MCFG_DEVICE_ADD( _tag, SOFTWARE_LIST, 0 ) \
+ MCFG_DEVICE_ADD( _tag, SOFTWARE_LIST ) \
MCFG_SOFTWARE_LIST_CONFIG(_list, SOFTWARE_LIST_COMPATIBLE_SYSTEM)
#define MCFG_SOFTWARE_LIST_MODIFY( _tag, _list ) \
@@ -132,7 +132,7 @@ class software_list_device : public device_t
public:
// construction/destruction
- software_list_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+ software_list_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0);
// inline configuration helpers
void set_type(const char *list, softlist_type list_type) { m_list_name.assign(list); m_list_type = list_type; }