diff options
Diffstat (limited to 'src/devices/bus/nes/jy.cpp')
-rw-r--r-- | src/devices/bus/nes/jy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nes/jy.cpp b/src/devices/bus/nes/jy.cpp index 191892ef544..38a30848859 100644 --- a/src/devices/bus/nes/jy.cpp +++ b/src/devices/bus/nes/jy.cpp @@ -296,7 +296,7 @@ READ8_MEMBER(nes_jy_typea_device::read_m) inline uint8_t nes_jy_typea_device::unscramble(uint8_t bank) { - return bitswap<8>(bank & 0x7f,7,0,1,2,3,4,5,6); + return BITSWAP8(bank & 0x7f,7,0,1,2,3,4,5,6); } void nes_jy_typea_device::update_prg() |