From 733232be5ae2e53cbc5459a518f02d9d1685fe17 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 18 Feb 2016 22:32:06 -0800 Subject: [PATCH] GB Video: Fix x-flip --- src/gb/renderers/software.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gb/renderers/software.c b/src/gb/renderers/software.c index 8c4f64857..4d30b283d 100644 --- a/src/gb/renderers/software.c +++ b/src/gb/renderers/software.c @@ -199,7 +199,6 @@ static void GBVideoSoftwareRendererDrawBackground(struct GBVideoSoftwareRenderer } if (GBObjAttributesIsXFlip(attrs)) { bottomX = 7 - bottomX; - bottomX = 7 - bottomX; } } uint8_t tileDataLower = localData[(bgTile * 8 + localY) * 2];