summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/usgames.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/usgames.cpp')
-rw-r--r--src/mame/video/usgames.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/usgames.cpp b/src/mame/video/usgames.cpp
index feea87ed751..20db490c16e 100644
--- a/src/mame/video/usgames.cpp
+++ b/src/mame/video/usgames.cpp
@@ -44,7 +44,7 @@ MC6845_UPDATE_ROW(usgames_state::update_row)
int attr = m_videoram[tile_index*2+1];
uint8_t bg_color = attr & 0xf;
uint8_t fg_color = (attr & 0xf0) >> 4;
-
+
const uint8_t plane = m_charram[(tile << 3) | ra];
for (int n = 7; n >= 0; n--)
*pix++ = m_palette->pen(BIT(plane, n) ? fg_color : bg_color);