summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2013-03-31 19:10:21 -0400
committerLioncash <mathew1800@gmail.com>2013-03-31 19:13:30 -0400
commitf432d6038e353f98cbe0fa522bd9d6034027246e (patch)
tree1dd89d17015043659f5f66e154ae89d2a547c20c /Source/Core/AudioCommon
parent45651098f6d15cfd474fc7edd6ea6539fe708f3c (diff)
Fix some typos and correct some capitalizations in the log messages.
Makes the logging look more orderly and less spammy when spitting out things.
Diffstat (limited to 'Source/Core/AudioCommon')
-rw-r--r--Source/Core/AudioCommon/Src/WaveFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/Src/WaveFile.cpp b/Source/Core/AudioCommon/Src/WaveFile.cpp
index 3cab3cea68..1c86f49b84 100644
--- a/Source/Core/AudioCommon/Src/WaveFile.cpp
+++ b/Source/Core/AudioCommon/Src/WaveFile.cpp
@@ -73,7 +73,7 @@ bool WaveFileWriter::Start(const char *filename, unsigned int HLESampleRate)
// We are now at offset 44
if (file.Tell() != 44)
- PanicAlert("wrong offset: %lld", (long long)file.Tell());
+ PanicAlert("Wrong offset: %lld", (long long)file.Tell());
return true;
}