diff options
author | 2013-03-26 15:18:37 +0000 | |
---|---|---|
committer | 2013-03-26 15:18:37 +0000 | |
commit | 051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch) | |
tree | 7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/mess/machine/c64_georam.c | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/mess/machine/c64_georam.c')
-rw-r--r-- | src/mess/machine/c64_georam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/c64_georam.c b/src/mess/machine/c64_georam.c index 40dd955ef6c..eb9dde56c1a 100644 --- a/src/mess/machine/c64_georam.c +++ b/src/mess/machine/c64_georam.c @@ -28,7 +28,7 @@ const device_type C64_GEORAM = &device_creator<c64_georam_cartridge_device>; //------------------------------------------------- c64_georam_cartridge_device::c64_georam_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, C64_GEORAM, "C64 GeoRAM cartridge", tag, owner, clock), + device_t(mconfig, C64_GEORAM, "C64 GeoRAM cartridge", tag, owner, clock, "c64_georam", __FILE__), device_c64_expansion_card_interface(mconfig, *this) { } |