aboutsummaryrefslogtreecommitdiff
path: root/src/GPU2D.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GPU2D.cpp')
-rw-r--r--src/GPU2D.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/GPU2D.cpp b/src/GPU2D.cpp
index ed47fd3..f725de5 100644
--- a/src/GPU2D.cpp
+++ b/src/GPU2D.cpp
@@ -650,7 +650,8 @@ void GPU2D::DrawScanline(u32 line)
u32 dispmode = DispCnt >> 16;
dispmode &= (Num ? 0x1 : 0x3);
- _3dgfx = GPU3D::GetLine(_3dline);
+ if (Num == 0)
+ _3dgfx = GPU3D::GetLine(_3dline);
// always render regular graphics
DrawScanline_Mode1(line, mode1gfx, _3dgfx);