summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/segas32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/segas32.cpp')
-rw-r--r--src/mame/machine/segas32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/segas32.cpp b/src/mame/machine/segas32.cpp
index debf07501dd..2424a498d00 100644
--- a/src/mame/machine/segas32.cpp
+++ b/src/mame/machine/segas32.cpp
@@ -46,7 +46,7 @@ void segas32_v25_state::decrypt_protrom()
// unscramble the address lines
for(i = 0; i < 0x10000; i++)
- rom[i] = temp[BITSWAP16(i, 14, 11, 15, 12, 13, 4, 3, 7, 5, 10, 2, 8, 9, 6, 1, 0)];
+ rom[i] = temp[bitswap<16>(i, 14, 11, 15, 12, 13, 4, 3, 7, 5, 10, 2, 8, 9, 6, 1, 0)];
}