Handle another case with HLE_GeneralDebugPrint

This commit is contained in:
Sepalani 2017-02-03 23:30:37 +00:00
parent 1603191145
commit e280f5615a

View File

@ -47,10 +47,18 @@ void HLE_GeneralDebugPrint()
} }
} }
else else
{
if (GPR(3) > 0x80000000)
{ {
// ___blank(const char* fmt, ...); // ___blank(const char* fmt, ...);
report_message = GetStringVA(); report_message = GetStringVA();
} }
else
{
// ___blank(int log_type, const char* fmt, ...);
report_message = GetStringVA(4);
}
}
NPC = LR; NPC = LR;