summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/lpci/mpc105.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/lpci/mpc105.h')
-rw-r--r--src/devices/bus/lpci/mpc105.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/lpci/mpc105.h b/src/devices/bus/lpci/mpc105.h
index 5d353737a9a..f890432dca4 100644
--- a/src/devices/bus/lpci/mpc105.h
+++ b/src/devices/bus/lpci/mpc105.h
@@ -28,9 +28,9 @@ class mpc105_device : public device_t,
{
public:
// construction/destruction
- mpc105_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ mpc105_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- static void static_set_cpu(device_t &device, std::string tag) { dynamic_cast<mpc105_device &>(device).m_cpu_tag = tag; }
+ static void static_set_cpu(device_t &device, const char *tag) { dynamic_cast<mpc105_device &>(device).m_cpu_tag = tag; }
static void static_set_bank_base_default(device_t &device, int bank_base_default) { dynamic_cast<mpc105_device &>(device).m_bank_base_default = bank_base_default; }
virtual UINT32 pci_read(pci_bus_device *pcibus, int function, int offset, UINT32 mem_mask) override;
@@ -44,7 +44,7 @@ protected:
void update_memory();
private:
- std::string m_cpu_tag;
+ const char *m_cpu_tag;
int m_bank_base_default;
int m_bank_base;
UINT8 m_bank_enable;