diff --git a/src/mame/video/terracre.cpp b/src/mame/video/terracre.cpp index 008e748ac4f..6f9c4415d60 100644 --- a/src/mame/video/terracre.cpp +++ b/src/mame/video/terracre.cpp @@ -186,6 +186,9 @@ uint32_t terracre_state::screen_update_amazon(screen_device &screen, bitmap_ind1 m_background->draw(screen, bitmap, cliprect, 0, 0 ); draw_sprites(bitmap,cliprect ); - m_foreground->draw(screen, bitmap, cliprect, 0, 0 ); + + if ((m_xscroll & 0x1000) == 0) + m_foreground->draw(screen, bitmap, cliprect, 0, 0); + return 0; }