diff options
Diffstat (limited to 'src/mame/drivers/naughtyb.cpp')
-rw-r--r-- | src/mame/drivers/naughtyb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/naughtyb.cpp b/src/mame/drivers/naughtyb.cpp index 08c2e7e23f6..21ee2d04a88 100644 --- a/src/mame/drivers/naughtyb.cpp +++ b/src/mame/drivers/naughtyb.cpp @@ -146,7 +146,7 @@ READ8_MEMBER(naughtyb_state::popflame_protection_r)/* Not used by bootleg/hack * { static const int seed00[4] = { 0x78, 0x68, 0x48, 0x38|0x80 }; static const int seed10[4] = { 0x68, 0x60, 0x68, 0x60|0x80 }; - UINT8 seedxx; + uint8_t seedxx; seedxx = (m_r_index < 0x89) ? 1 : 0; |