HLE: More printf floating point types handled

This commit is contained in:
Sepalani 2017-02-17 10:51:10 +00:00
parent d8479869dc
commit 5f7002da5c
1 changed files with 7 additions and 0 deletions

View File

@ -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++;