From 1447b13570694c1adf7eac2bdf07039c021db32d Mon Sep 17 00:00:00 2001 From: hap Date: Sat, 5 Nov 2022 14:43:57 +0100 Subject: bestleag: fix wrong calculation in prev commit --- src/mame/jaleco/bestleag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/jaleco/bestleag.cpp b/src/mame/jaleco/bestleag.cpp index 1b0f8200cf3..88523659dc9 100644 --- a/src/mame/jaleco/bestleag.cpp +++ b/src/mame/jaleco/bestleag.cpp @@ -143,7 +143,7 @@ Note: sprite chip is different than the other Big Striker sets and they void bestleag_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect) { int start = 0x16/2; - int end = m_spriteram.length() - (start & 3); + int end = m_spriteram.length() - (-start & 3); /* -- cgit v1.2.3