diff options
author | Max Horn | 2011-06-02 14:11:38 +0200 |
---|---|---|
committer | Max Horn | 2011-06-02 18:31:59 +0200 |
commit | 477d6233c3672d9a60cceea3570bc775df3d9253 (patch) | |
tree | 741ffe9dcb35fd2c9de405b7da74e572451c8304 /engines/toon | |
parent | 86240bb0dc0103e5099d23770cc04cfd907d2c61 (diff) | |
download | scummvm-rg350-477d6233c3672d9a60cceea3570bc775df3d9253.tar.gz scummvm-rg350-477d6233c3672d9a60cceea3570bc775df3d9253.tar.bz2 scummvm-rg350-477d6233c3672d9a60cceea3570bc775df3d9253.zip |
ENGINES: Change 2nd param of Engine::saveGameState to Common::String
Diffstat (limited to 'engines/toon')
-rw-r--r-- | engines/toon/toon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/toon.h b/engines/toon/toon.h index 1eaa5022a9..02828f26d1 100644 --- a/engines/toon/toon.h +++ b/engines/toon/toon.h @@ -318,7 +318,7 @@ public: return _shouldQuit; } - Common::Error saveGameState(int slot, const char *desc) { + Common::Error saveGameState(int slot, const Common::String &desc) { return (saveGame(slot, desc) ? Common::kWritingFailed : Common::kNoError); } |