summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mz700.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mz700.cpp')
-rw-r--r--src/mame/video/mz700.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/mz700.cpp b/src/mame/video/mz700.cpp
index 0bb0bdd4c07..9a919f920a2 100644
--- a/src/mame/video/mz700.cpp
+++ b/src/mame/video/mz700.cpp
@@ -32,7 +32,7 @@ uint32_t mz_state::screen_update_mz700(screen_device &screen, bitmap_ind16 &bitm
if (col != oldcol)
{
oldcol = col;
- col = BITSWAP8(col, 7, 3, 4, 6, 5, 0, 2, 1); // turn BRG into RGB
+ col = bitswap<8>(col, 7, 3, 4, 6, 5, 0, 2, 1); // turn BRG into RGB
bg = col & 7;
fg = (col >> 3) & 7;
}