summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/FileMonitor.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2010-11-10 04:12:31 +0000
committerJordan Woyak <jordan.woyak@gmail.com>2010-11-10 04:12:31 +0000
commit26f84c1e74bd4df5c64edd675c8f89ab252cb052 (patch)
treeadc064a9f17453b2527da332079698d7d34586a7 /Source/Core/DiscIO/Src/FileMonitor.cpp
parent7b34def0fc7c386c9f10f68c816cf8fd5a7073f7 (diff)
StringUtil cleanup. Nothing seems broken.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6367 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/FileMonitor.cpp')
-rw-r--r--Source/Core/DiscIO/Src/FileMonitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/FileMonitor.cpp b/Source/Core/DiscIO/Src/FileMonitor.cpp
index ba95f0609e..c05bd3f22c 100644
--- a/Source/Core/DiscIO/Src/FileMonitor.cpp
+++ b/Source/Core/DiscIO/Src/FileMonitor.cpp
@@ -103,7 +103,7 @@ void CheckFile(std::string File, u64 Size)
if (CurrentFile == File) return;
if (Size > 0) Size = (Size / 1000);
- std::string Str = StringFromFormat("%s kB %s", ThS(Size, true, 7).c_str(), File.c_str());
+ std::string Str = StringFromFormat("%s kB %s", ThousandSeparate(Size, 7).c_str(), File.c_str());
if (ShowSound(File))
{
NOTICE_LOG(FILEMON, Str.c_str());