From e82362d50a8f8d3550bced05da2cbac92de7dd1e Mon Sep 17 00:00:00 2001 From: "wrenczes@gmail.com" Date: Sun, 24 Apr 2011 11:55:04 +0000 Subject: [PATCH] Missed a part of my psp side change for the ClearScreen change. Now the BeginScene call is consistent with the pc side, and calls clear. --- JGE/src/JGfx.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/JGE/src/JGfx.cpp b/JGE/src/JGfx.cpp index 3896ebf97..d470dd520 100644 --- a/JGE/src/JGfx.cpp +++ b/JGE/src/JGfx.cpp @@ -323,6 +323,10 @@ void JRenderer::BeginScene() //if (mMode3D) sceGuClear(GU_DEPTH_BUFFER_BIT|GU_COLOR_BUFFER_BIT); } + else + { + sceGuClear(GU_COLOR_BUFFER_BIT); + } sceGuTexMode(TEXTURE_FORMAT, 0, 0, mSwizzle); mCurrentTextureFormat = TEXTURE_FORMAT;