mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-01 08:23:15 +00:00
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:
parent
ac70aa2e5c
commit
9b8afdab0e
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user