Fix a few minor typos.

This commit is contained in:
Unknown W. Brackets 2014-01-11 22:59:06 -08:00
parent c7dbb69722
commit 4f585fd7a6
3 changed files with 2 additions and 4 deletions

View File

@ -753,7 +753,7 @@ u32 sceDisplayWaitVblankCB() {
__KernelWaitCurThread(WAITTYPE_VBLANK, 1, 0, 0, true, "vblank waited");
return 0;
} else {
DEBUG_LOG(SCEDISPLAY,"sceDisplayWaitVblank() - not waiting since in vBlank");
DEBUG_LOG(SCEDISPLAY,"sceDisplayWaitVblankCB() - not waiting since in vBlank");
hleEatCycles(1110);
return 1;
}

View File

@ -373,8 +373,6 @@ int sceKernelLoadExec(const char *filename, u32 paramPtr);
void sceKernelExitGame();
void sceKernelExitGameWithStatus();
int LoadExecForUser_362A956B();
void sceKernelRegisterExitCallback();
u32 sceKernelDevkitVersion();

View File

@ -821,7 +821,7 @@ void VertexDecoder::SetVertexType(u32 fmt, VertexDecoderJitCache *jitCache) {
if (jitCache && g_Config.bVertexDecoderJit) {
jitted_ = jitCache->Compile(*this);
if (!jitted_) {
WARN_LOG(G3D, "Vertex decoder JIT failed! fmt = %08x", fmt_);;
WARN_LOG(G3D, "Vertex decoder JIT failed! fmt = %08x", fmt_);
}
}
}