diff options
author | Johannes Schickel | 2013-08-01 03:28:27 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-01 03:30:14 +0200 |
commit | 9b8afdab0ea366de0fe1125f86405df232688dfa (patch) | |
tree | 5e0cccef01f3fd65df79243d718909d23385a29b /engines | |
parent | ac70aa2e5c246225ac5bf44fb7f746d4f2ec13f8 (diff) | |
download | scummvm-rg350-9b8afdab0ea366de0fe1125f86405df232688dfa.tar.gz scummvm-rg350-9b8afdab0ea366de0fe1125f86405df232688dfa.tar.bz2 scummvm-rg350-9b8afdab0ea366de0fe1125f86405df232688dfa.zip |
HOPKINS: Slight cleanup.
This renames HopkinsEngine::targetName to HopkinsEngine::getTargetName. This
is more consistent with the name scheme of the remaining getters.
It also makes getTargetName return a const reference instead of a copy.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hopkins/computer.cpp | 6 | ||||
-rw-r--r-- | engines/hopkins/detection.cpp | 2 | ||||
-rw-r--r-- | engines/hopkins/hopkins.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/engines/hopkins/computer.cpp b/engines/hopkins/computer.cpp index 489e7e1133..c09d748b97 100644 --- a/engines/hopkins/computer.cpp +++ b/engines/hopkins/computer.cpp @@ -581,8 +581,8 @@ void ComputerManager::loadHiscore() { byte *ptr = _vm->_globals->allocMemory(100); memset(ptr, 0, 100); - if (_vm->_saveLoad->saveExists(_vm->targetName() + "-highscore.dat")) - _vm->_saveLoad->load(_vm->targetName() + "-highscore.dat", ptr); + if (_vm->_saveLoad->saveExists(_vm->getTargetName() + "-highscore.dat")) + _vm->_saveLoad->load(_vm->getTargetName() + "-highscore.dat", ptr); for (int scoreIndex = 0; scoreIndex < 6; ++scoreIndex) { _score[scoreIndex]._name = " "; @@ -1012,7 +1012,7 @@ void ComputerManager::saveScore() { ptr[curBufPtr + 15] = 0; } - _vm->_saveLoad->saveFile(_vm->targetName() + "-highscore.dat", ptr, 100); + _vm->_saveLoad->saveFile(_vm->getTargetName() + "-highscore.dat", ptr, 100); _vm->_globals->freeMemory(ptr); } diff --git a/engines/hopkins/detection.cpp b/engines/hopkins/detection.cpp index 45b6c2bc1d..c617a5aacf 100644 --- a/engines/hopkins/detection.cpp +++ b/engines/hopkins/detection.cpp @@ -56,7 +56,7 @@ bool HopkinsEngine::getIsDemo() const { return _gameDescription->desc.flags & ADGF_DEMO; } -Common::String HopkinsEngine::targetName() const { +const Common::String &HopkinsEngine::getTargetName() const { return _targetName; } diff --git a/engines/hopkins/hopkins.h b/engines/hopkins/hopkins.h index 54e7c90b78..d8c30e5004 100644 --- a/engines/hopkins/hopkins.h +++ b/engines/hopkins/hopkins.h @@ -164,7 +164,7 @@ public: Common::Platform getPlatform() const; uint16 getVersion() const; bool getIsDemo() const; - Common::String targetName() const; + const Common::String &getTargetName() const; int getRandomNumber(int maxNumber); Common::String generateSaveName(int slotNumber); |