diff options
Diffstat (limited to 'src/mame/drivers/galpani2.cpp')
-rw-r--r-- | src/mame/drivers/galpani2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/galpani2.cpp b/src/mame/drivers/galpani2.cpp index 38c94e02085..a658e02409b 100644 --- a/src/mame/drivers/galpani2.cpp +++ b/src/mame/drivers/galpani2.cpp @@ -332,14 +332,14 @@ WRITE8_MEMBER(galpani2_state::galpani2_coin_lockout_w) WRITE8_MEMBER(galpani2_state::galpani2_oki1_bank_w) { UINT8 *ROM = memregion("oki1")->base(); - logerror("%s : %s bank %08X\n",machine().describe_context(),tag().c_str(),data); + logerror("%s : %s bank %08X\n",machine().describe_context(),tag(),data); memcpy(ROM + 0x30000, ROM + 0x40000 + 0x10000 * (~data & 0xf), 0x10000); } WRITE8_MEMBER(galpani2_state::galpani2_oki2_bank_w) { m_oki2->set_bank_base(0x40000 * (data & 0xf) ); - logerror("%s : %s bank %08X\n",machine().describe_context(),tag().c_str(),data); + logerror("%s : %s bank %08X\n",machine().describe_context(),tag(),data); } |