diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-01-07 20:00:20 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-01-07 20:00:20 +0100 |
commit | c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe (patch) | |
tree | 0843c6ad9c4329fee376c50caf907e03e1908f33 | |
parent | Add missing GXT line (diff) | |
download | re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.tar re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.tar.gz re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.tar.bz2 re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.tar.lz re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.tar.xz re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.tar.zst re3-c2672bd630e2c7d748d759aa9b6e81ba7ecfc0fe.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/Frontend.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/Frontend.cpp b/src/core/Frontend.cpp index e5e42b8c..11488aec 100644 --- a/src/core/Frontend.cpp +++ b/src/core/Frontend.cpp @@ -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); |