mirror of
https://github.com/holub/mame
synced 2025-10-08 09:30:17 +03:00
ioports and output finders need initializing with an unsigned value, not an implcitly signed value. Fixes build on GCC.
This commit is contained in:
parent
cc97ea4213
commit
6c6732e8cf
@ -223,8 +223,8 @@ ibm_pc_at_101_keyboard_device::ibm_pc_at_101_keyboard_device(const machine_confi
|
|||||||
: device_t(mconfig, PC_KBD_IBM_PC_AT_101, tag, owner, clock)
|
: device_t(mconfig, PC_KBD_IBM_PC_AT_101, tag, owner, clock)
|
||||||
, device_pc_kbd_interface(mconfig, *this)
|
, device_pc_kbd_interface(mconfig, *this)
|
||||||
, m_maincpu(*this, "mcu")
|
, m_maincpu(*this, "mcu")
|
||||||
, m_column(*this, "column%02u", 0)
|
, m_column(*this, "column%02u", 0U)
|
||||||
, m_leds(*this, "led%u", 0)
|
, m_leds(*this, "led%u", 0U)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user