mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
Handle another case with HLE_GeneralDebugPrint
This commit is contained in:
parent
1603191145
commit
e280f5615a
1 changed files with 10 additions and 2 deletions
|
@ -48,8 +48,16 @@ void HLE_GeneralDebugPrint()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// ___blank(const char* fmt, ...);
|
if (GPR(3) > 0x80000000)
|
||||||
report_message = GetStringVA();
|
{
|
||||||
|
// ___blank(const char* fmt, ...);
|
||||||
|
report_message = GetStringVA();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// ___blank(int log_type, const char* fmt, ...);
|
||||||
|
report_message = GetStringVA(4);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NPC = LR;
|
NPC = LR;
|
||||||
|
|
Loading…
Add table
Reference in a new issue