summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-12-05 23:48:55 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-12-05 23:49:17 -0500
commit09e173dd1749e59dac23cae501a23cd8d39b8ca8 (patch)
tree9cfbc9a0141630d11e8c2a0b1d9a04fc77fa770a
parentd73b585d65936a5b9736e23cf85e543ef5bd2779 (diff)
x1_012: Fix insidious variable type mistake that caused tilemap regressions
-rw-r--r--src/mame/video/x1_012.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/x1_012.h b/src/mame/video/x1_012.h
index a47ef1a377d..3ac9bfc9501 100644
--- a/src/mame/video/x1_012.h
+++ b/src/mame/video/x1_012.h
@@ -48,7 +48,7 @@ private:
tilemap_t *m_tilemap;
- u8 m_xoffsets[2];
+ int m_xoffsets[2];
u16 m_vctrl[3];
u8 m_rambank;