From 587d432677de5309724b3389d937e8a5bcece9a5 Mon Sep 17 00:00:00 2001 From: Arisotura Date: Tue, 7 May 2019 21:19:33 +0200 Subject: don't do OBJ window if it isn't enabled (oops) --- src/GPU2D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/GPU2D.cpp b/src/GPU2D.cpp index cc428ce..7f19833 100644 --- a/src/GPU2D.cpp +++ b/src/GPU2D.cpp @@ -1019,7 +1019,7 @@ void GPU2D::CalculateWindowMask(u32 line, u8* mask) for (u32 i = 0; i < 256; i++) mask[i] = WinCnt[2]; // window outside - if (DispCnt & ((1<<15)|(1<<12))) + if ((DispCnt & (1<<15)) && (DispCnt & (1<<12))) { // OBJ window DrawSpritesWindow(line, mask); -- cgit v1.2.3