Merge pull request #5958 from sasuke-arcade/teracre_video_fix

teracre.cpp: Add hide text layer support (used in horekid)
This commit is contained in:
ajrhacker 2019-11-24 10:35:15 -05:00 committed by GitHub
commit 723969154f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}