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.
This commit is contained in:
Johannes Schickel 2013-08-01 03:28:27 +02:00
parent ac70aa2e5c
commit 9b8afdab0e
3 changed files with 5 additions and 5 deletions

View File

@ -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);
}

View File

@ -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;
}

View File

@ -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);