diff options
Diffstat (limited to 'src/mame/drivers/cvs.cpp')
-rw-r--r-- | src/mame/drivers/cvs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/cvs.cpp b/src/mame/drivers/cvs.cpp index 8581b6b4a36..2c65f6b02a2 100644 --- a/src/mame/drivers/cvs.cpp +++ b/src/mame/drivers/cvs.cpp @@ -1572,7 +1572,7 @@ DRIVER_INIT_MEMBER(cvs_state,hunchbaka) /* data lines D2 and D5 swapped */ for (offs = 0; offs < 0x7400; offs++) - ROM[offs] = BITSWAP8(ROM[offs],7,6,2,4,3,5,1,0); + ROM[offs] = bitswap<8>(ROM[offs],7,6,2,4,3,5,1,0); } @@ -1638,7 +1638,7 @@ DRIVER_INIT_MEMBER(cvs_state,raiders) /* data lines D1 and D6 swapped */ for (offs = 0; offs < 0x7400; offs++) - ROM[offs] = BITSWAP8(ROM[offs],7,1,5,4,3,2,6,0); + ROM[offs] = bitswap<8>(ROM[offs],7,1,5,4,3,2,6,0); /* patch out protection */ ROM[0x010a] = 0xc0; |