mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
Fix char in stats
This commit is contained in:
parent
eecf095077
commit
c2672bd630
@ -3639,7 +3639,7 @@ CMenuManager::ExportStats()
|
||||
char *statValue = UnicodeToAscii(gUString2);
|
||||
for (int j = 0; statValue[j] != '\0'; ++j) {
|
||||
if (statValue[j] == '_')
|
||||
statValue[j] = 0xBA; // This is degree symbol, but my editors keeps messing up with it so I wrote hex representation
|
||||
statValue[j] = '\xBA'; // This is degree symbol, but my editors keeps messing up with it so I wrote hex representation
|
||||
}
|
||||
if (statValue)
|
||||
fprintf(txtFile, "%s\n\n", statValue);
|
||||
@ -3701,7 +3701,7 @@ CMenuManager::ExportStats()
|
||||
char *statValue = UnicodeToAscii(gUString2);
|
||||
for (int l = 0; statValue[l] != '\0'; ++l) {
|
||||
if (statValue[l] == '_')
|
||||
statValue[l] = 0xBA; // This is degree symbol, but my editors keeps messing up with it so I wrote hex representation
|
||||
statValue[l] = '\xBA'; // This is degree symbol, but my editors keeps messing up with it so I wrote hex representation
|
||||
}
|
||||
if (statValue)
|
||||
fprintf(htmlFile, "%s", statValue);
|
||||
|
Loading…
Reference in New Issue
Block a user