diff options
Diffstat (limited to 'src/mame/drivers/pbaction.cpp')
-rw-r--r-- | src/mame/drivers/pbaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pbaction.cpp b/src/mame/drivers/pbaction.cpp index 37416270468..20e3944aff3 100644 --- a/src/mame/drivers/pbaction.cpp +++ b/src/mame/drivers/pbaction.cpp @@ -494,7 +494,7 @@ DRIVER_INIT_MEMBER(pbaction_state,pbactio3) /* first of all, do a simple bitswap */ for (i = 0; i < 0xc000; i++) { - rom[i] = BITSWAP8(rom[i], 7,6,5,4,1,2,3,0); + rom[i] = bitswap<8>(rom[i], 7,6,5,4,1,2,3,0); } /* install a protection (?) workaround */ |