mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
HLE: More printf floating point types handled
This commit is contained in:
parent
d8479869dc
commit
5f7002da5c
@ -138,7 +138,14 @@ std::string GetStringVA(u32 strReg)
|
||||
break;
|
||||
}
|
||||
|
||||
case 'a':
|
||||
case 'A':
|
||||
case 'e':
|
||||
case 'E':
|
||||
case 'f':
|
||||
case 'F':
|
||||
case 'g':
|
||||
case 'G':
|
||||
{
|
||||
result += StringFromFormat(ArgumentBuffer.c_str(), rPS0(FloatingParameterCounter));
|
||||
FloatingParameterCounter++;
|
||||
|
Loading…
Reference in New Issue
Block a user