diff options
author | Arnaud Boutonné | 2010-11-29 18:03:05 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-11-29 18:03:05 +0000 |
commit | fe806a1aba19f6124237bddecd47b5c8a217682e (patch) | |
tree | 67c9fb3ce17e22ee9721ffc8e8b036d2fd689642 | |
parent | b6f9407ec6369f98bab1d13746ba0316ac1c50dd (diff) | |
download | scummvm-rg350-fe806a1aba19f6124237bddecd47b5c8a217682e.tar.gz scummvm-rg350-fe806a1aba19f6124237bddecd47b5c8a217682e.tar.bz2 scummvm-rg350-fe806a1aba19f6124237bddecd47b5c8a217682e.zip |
HUGO: Fix a remaining warning
svn-id: r54578
-rw-r--r-- | engines/hugo/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp index e34679fce3..36d0f17beb 100644 --- a/engines/hugo/file.cpp +++ b/engines/hugo/file.cpp @@ -303,7 +303,7 @@ bool FileManager::fileExists(char *filename) { * Save game to supplied slot */ bool FileManager::saveGame(int16 slot, Common::String descrip) { - debugC(1, kDebugFile, "saveGame(%d, %s)", slot, descrip); + debugC(1, kDebugFile, "saveGame(%d, %s)", slot, descrip.c_str()); const EnginePlugin *plugin = NULL; int16 savegameId; |