- [PSP] pressing START + TRIANGLE on the PSP will attempt to reset the GU. If/when you get the purple screen, try to press start+triangle in the main menu and let me know if it changes something
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-12-04 03:44:47 +00:00
parent e3f44344fb
commit 73661a58d7
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -241,6 +241,11 @@ void GameApp::Update()
return;
}
//Restart Rendering engine when START and TRIANGLE ARE PRESSED SIMULTANEOUSLY
if (mEngine->GetButtonState(PSP_CTRL_START) && mEngine->GetButtonState(PSP_CTRL_TRIANGLE)){
JRenderer::Destroy();
}
float dt = mEngine->GetDelta();
if (dt > 35.0f) // min 30 FPS ;)
dt = 35.0f;