diff options
| author | Max Horn | 2010-11-01 16:02:28 +0000 |
|---|---|---|
| committer | Max Horn | 2010-11-01 16:02:28 +0000 |
| commit | e27b05ef358102fd60235a5f78d7d51e9f25a5f4 (patch) | |
| tree | 50e994a47741bf619de730f6a3ece5d0a0cc7e95 /engines/hugo/file.cpp | |
| parent | 7a853650047064fb15720bb58ce7c5eec28ef606 (diff) | |
| download | scummvm-rg350-e27b05ef358102fd60235a5f78d7d51e9f25a5f4.tar.gz scummvm-rg350-e27b05ef358102fd60235a5f78d7d51e9f25a5f4.tar.bz2 scummvm-rg350-e27b05ef358102fd60235a5f78d7d51e9f25a5f4.zip | |
COMMON: Rename String::printf() to String::format()
This is a first step towards getting rid of all uses of regular printf,
fprintf, vprintf, vfprintf, puts, fputs, etc. in our codebase.
The name format() reflects the purpose of the function, and parallels
String.format() in Java, boost::format, and others.
svn-id: r54004
Diffstat (limited to 'engines/hugo/file.cpp')
| -rw-r--r-- | engines/hugo/file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp index 44dd287ed1..c8f9586c74 100644 --- a/engines/hugo/file.cpp +++ b/engines/hugo/file.cpp @@ -294,7 +294,7 @@ void FileManager::saveGame(int16 slot, const char *descrip) { if (slot == -1) path = _vm->_initFilename; else - path = Common::String::printf(_vm->_saveFilename.c_str(), slot); + path = Common::String::format(_vm->_saveFilename.c_str(), slot); Common::WriteStream *out = _vm->getSaveFileManager()->openForSaving(path); if (!out) { @@ -366,7 +366,7 @@ void FileManager::restoreGame(int16 slot) { if (slot == -1) path = _vm->_initFilename; else - path = Common::String::printf(_vm->_saveFilename.c_str(), slot); + path = Common::String::format(_vm->_saveFilename.c_str(), slot); Common::SeekableReadStream *in = _vm->getSaveFileManager()->openForLoading(path); if (!in) |
