diff options
author | Max Horn | 2007-08-11 08:16:18 +0000 |
---|---|---|
committer | Max Horn | 2007-08-11 08:16:18 +0000 |
commit | 3f22960a65523dc6c8fb7d0b238145d4ebe42be7 (patch) | |
tree | 3564265ebae901c3071e6f6770c9cee4ff64831a | |
parent | a03119c5f5c51203a7ca0c7ca84d928b47ae8aa6 (diff) | |
download | scummvm-rg350-3f22960a65523dc6c8fb7d0b238145d4ebe42be7.tar.gz scummvm-rg350-3f22960a65523dc6c8fb7d0b238145d4ebe42be7.tar.bz2 scummvm-rg350-3f22960a65523dc6c8fb7d0b238145d4ebe42be7.zip |
Fix warning() format string
svn-id: r28518
-rw-r--r-- | engines/agi/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/sound.cpp b/engines/agi/sound.cpp index e842cdabcb..309738164a 100644 --- a/engines/agi/sound.cpp +++ b/engines/agi/sound.cpp @@ -889,7 +889,7 @@ bool loadWaveFile(const Common::String &wavePath, const IIgsExeInfo &exeInfo) { Common::md5_file_string(*uint8Wave, md5str, SIERRASTANDARD_SIZE); if (scumm_stricmp(md5str, exeInfo.instSet.waveFileMd5)) { warning("Unknown Apple IIGS wave file (md5: %s, game: %s).\n" \ - "Please report the information on the previous line to the ScummVM team.\n", + "Please report the information on the previous line to the ScummVM team.\n" \ "Using the wave file as it is - music may sound weird", md5str, exeInfo.exePrefix); } |