diff options
Diffstat (limited to 'src/mame/drivers/lasso.cpp')
-rw-r--r-- | src/mame/drivers/lasso.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/lasso.cpp b/src/mame/drivers/lasso.cpp index 935a0bc6cc8..7a765e90717 100644 --- a/src/mame/drivers/lasso.cpp +++ b/src/mame/drivers/lasso.cpp @@ -61,7 +61,7 @@ READ8_MEMBER(lasso_state::sound_status_r) WRITE8_MEMBER(lasso_state::sound_select_w) { - UINT8 to_write = BITSWAP8(*m_chip_data, 0, 1, 2, 3, 4, 5, 6, 7); + uint8_t to_write = BITSWAP8(*m_chip_data, 0, 1, 2, 3, 4, 5, 6, 7); if (~data & 0x01) /* chip #0 */ m_sn_1->write(space, 0, to_write); |