Merge pull request #4922 from sepalani/more_format

HLE: More printf floating point types handled
This commit is contained in:
Markus Wick 2017-02-23 11:03:32 +01:00 committed by GitHub
commit 0a3a2fe155
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++;