diff options
Diffstat (limited to 'src/mame/drivers/goldstar.cpp')
-rw-r--r-- | src/mame/drivers/goldstar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/goldstar.cpp b/src/mame/drivers/goldstar.cpp index 8a865657eba..683b74f960f 100644 --- a/src/mame/drivers/goldstar.cpp +++ b/src/mame/drivers/goldstar.cpp @@ -18412,7 +18412,7 @@ void wingco_state::init_super972() m_decrypted_opcodes[i] = rom [i]; for (int i = 0xc000; i < 0xe000; i++) - m_decrypted_opcodes[i] = bitswap<8>(m_decrypted_opcodes[i], 7, 4, 5, 6, 3, 0, 1, 2);; + m_decrypted_opcodes[i] = bitswap<8>(m_decrypted_opcodes[i], 7, 4, 5, 6, 3, 0, 1, 2); for (int i = 0xc000; i < 0xe000; i++) rom[i] = bitswap<8>(rom[i], 7, 2, 5, 0, 3, 6, 1, 4); |