summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jtc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jtc.cpp')
-rw-r--r--src/mame/drivers/jtc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/jtc.cpp b/src/mame/drivers/jtc.cpp
index 1f6c544ca87..086f40463b3 100644
--- a/src/mame/drivers/jtc.cpp
+++ b/src/mame/drivers/jtc.cpp
@@ -605,7 +605,7 @@ uint32_t jtc_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, c
for (x = 0; x < 8; x++)
{
- int color = BIT(data, x);
+ int color = BIT(data, 7-x);
bitmap.pix16(y, (sx * 8) + x) = color;
}
}