From 5dfc89ca83b295df8630513fe09d48b407274a84 Mon Sep 17 00:00:00 2001 From: luigi__ Date: Sat, 10 Jan 2009 23:23:18 +0000 Subject: [PATCH] oops, I had forgotten to set gpu->bgPixels in one of the 3D pixel blitting funcs. --- desmume/src/GPU.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desmume/src/GPU.cpp b/desmume/src/GPU.cpp index b4e463317..a0723e14c 100644 --- a/desmume/src/GPU.cpp +++ b/desmume/src/GPU.cpp @@ -854,6 +854,7 @@ static BOOL setFinalBGColorSpecialDecreaseWnd (GPU *gpu, u32 passing, u8 bgnum, static BOOL setFinal3DColorSpecialNone(GPU *gpu, u32 passing, u8 *dst, u16 color, u8 alpha, u16 x) { T2WriteWord(dst, passing, (color | 0x8000)); + gpu->bgPixels[x] = 0; return 1; }