mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 11:32:43 +01:00
Merge pull request #4817 from sepalani/debug_print_case
Handle another case with HLE_GeneralDebugPrint
This commit is contained in:
commit
b9fc79020d
@ -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…
x
Reference in New Issue
Block a user