diff options
author | 2015-12-26 13:54:32 +0100 | |
---|---|---|
committer | 2015-12-26 13:54:32 +0100 | |
commit | 9f998d0afb69f4286f05e46efe27806b6aba32af (patch) | |
tree | 7a126081d7eb971c4cc9f8fa8952ad04a30ab231 /src/devices/sound/segapcm.cpp | |
parent | a546ea128238feaa616451ed7b7f4fe389dd1460 (diff) |
cleanup (nw)
Diffstat (limited to 'src/devices/sound/segapcm.cpp')
-rw-r--r-- | src/devices/sound/segapcm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/segapcm.cpp b/src/devices/sound/segapcm.cpp index c93d830392e..555ee019b16 100644 --- a/src/devices/sound/segapcm.cpp +++ b/src/devices/sound/segapcm.cpp @@ -46,7 +46,7 @@ void segapcm_device::device_start() if (!mask) mask = BANK_MASK7 >> 16; - for(rom_mask = 1; rom_mask < m_rom.length(); rom_mask *= 2); + for(rom_mask = 1; rom_mask < m_rom.length(); rom_mask *= 2) { }; rom_mask--; m_bankmask = mask & (rom_mask >> m_bankshift); |