summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/astrocde/slot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/astrocde/slot.h')
-rw-r--r--src/devices/bus/astrocde/slot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/astrocde/slot.h b/src/devices/bus/astrocde/slot.h
index 2a22a3a64a0..1a28ccf4b96 100644
--- a/src/devices/bus/astrocde/slot.h
+++ b/src/devices/bus/astrocde/slot.h
@@ -29,7 +29,7 @@ public:
// reading and writing
virtual DECLARE_READ8_MEMBER(read_rom) { return 0xff; }
- void rom_alloc(UINT32 size, std::string tag);
+ void rom_alloc(UINT32 size, const char *tag);
UINT8* get_rom_base() { return m_rom; }
UINT32 get_rom_size() { return m_rom_size; }
@@ -48,7 +48,7 @@ class astrocade_cart_slot_device : public device_t,
{
public:
// construction/destruction
- astrocade_cart_slot_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ astrocade_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual ~astrocade_cart_slot_device();
// device-level overrides