From c9a0d21bb4dd633c879d52c108a1f2ed3d7e6c62 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 7 Apr 2018 15:13:24 -0400 Subject: [PATCH] Build fix (nw) --- src/mame/video/atarisy2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); }