From 7838698301425ce6cd90d1e0030184f1919e037b Mon Sep 17 00:00:00 2001 From: ywy <12588017+y-ack@users.noreply.github.com> Date: Thu, 11 May 2023 03:25:48 -0700 Subject: taito/taito_f3_v.cpp: fix vram wrap width (bubble symphony platforms) (#11211) corrects mistake introduced by 819a5c4 --- src/mame/taito/taito_f3_v.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/taito/taito_f3_v.cpp b/src/mame/taito/taito_f3_v.cpp index 302138390e2..cd4da179eeb 100644 --- a/src/mame/taito/taito_f3_v.cpp +++ b/src/mame/taito/taito_f3_v.cpp @@ -1920,7 +1920,7 @@ void taito_f3_state::get_vram_info(tilemap_t *vram_tilemap, tilemap_t *pixel_til u16 pri = 0; - const int vram_width_mask = 0x3ff; + const int vram_width_mask = 0x1ff; if (m_flipscreen) { -- cgit v1.2.3