summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/x07.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/x07.h')
-rw-r--r--src/mame/includes/x07.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/x07.h b/src/mame/includes/x07.h
index acea6f55260..c081fdc6d51 100644
--- a/src/mame/includes/x07.h
+++ b/src/mame/includes/x07.h
@@ -92,7 +92,7 @@ static const UINT8 t6834_cmd_len[0x47] =
struct x07_kb
{
- const char *tag; //input port tag
+ std::string tag; //input port tag
UINT8 mask; //bit mask
UINT8 codes[7]; //port codes
};
@@ -160,7 +160,7 @@ static const x07_kb x07_keycodes[56] =
class x07_state : public driver_device
{
public:
- x07_state(const machine_config &mconfig, device_type type, const char *tag)
+ x07_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_printer(*this, "printer"),