summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-04-07 15:13:24 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-04-07 15:13:24 -0400
commitc9a0d21bb4dd633c879d52c108a1f2ed3d7e6c62 (patch)
tree4a4c91a13a16452a125b155d7550d9e8ee11fba0
parent8785008a9ff6ed84b3300472a75cd3831d9c1926 (diff)
Build fix (nw)
-rw-r--r--src/mame/video/atarisy2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/atarisy2.cpp b/src/mame/video/atarisy2.cpp
index bc869696a2f..0c735cccc4f 100644
--- a/src/mame/video/atarisy2.cpp
+++ b/src/mame/video/atarisy2.cpp
@@ -218,7 +218,7 @@ WRITE16_MEMBER( atarisy2_state::slapstic_w )
WRITE16_MEMBER( atarisy2_state::spriteram_w )
{
/* force an update if the link of object 0 is about to change */
- if (offs == 0x0003)
+ if (offset == 0x0003)
m_screen->update_partial(m_screen->vpos());
COMBINE_DATA(&m_mob->spriteram()[offset]);
}