aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/hugo.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-13 17:44:09 +0200
committerStrangerke2012-06-13 17:44:09 +0200
commitfbc2c6d08ac96c92e2424118dc9b0548628287e5 (patch)
treee0b81315b356039a28a862b7f708a9dc3de41fe0 /engines/hugo/hugo.cpp
parent0c7fcff8a3fa10fc9bedcf0ac299809f9a140632 (diff)
downloadscummvm-rg350-fbc2c6d08ac96c92e2424118dc9b0548628287e5.tar.gz
scummvm-rg350-fbc2c6d08ac96c92e2424118dc9b0548628287e5.tar.bz2
scummvm-rg350-fbc2c6d08ac96c92e2424118dc9b0548628287e5.zip
HUGO: More renaming
Diffstat (limited to 'engines/hugo/hugo.cpp')
-rw-r--r--engines/hugo/hugo.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index 450f4ff837..7462da0df8 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -562,10 +562,10 @@ void HugoEngine::initStatus() {
void HugoEngine::initConfig() {
debugC(1, kDebugEngine, "initConfig()");
- _config.musicFl = true; // Music state initially on
- _config.soundFl = true; // Sound state initially on
- _config.turboFl = false; // Turbo state initially off
- initPlaylist(_config.playlist); // Initialize default tune playlist
+ _config._musicFl = true; // Music state initially on
+ _config._soundFl = true; // Sound state initially on
+ _config._turboFl = false; // Turbo state initially off
+ initPlaylist(_config._playlist); // Initialize default tune playlist
_file->readBootFile(); // Read startup structure
}
@@ -577,7 +577,7 @@ void HugoEngine::resetConfig() {
// Find first tune and play it
for (int16 i = 0; i < kMaxTunes; i++) {
- if (_config.playlist[i]) {
+ if (_config._playlist[i]) {
_sound->playMusic(i);
break;
}
@@ -694,7 +694,7 @@ bool HugoEngine::canSaveGameStateCurrently() {
}
int8 HugoEngine::getTPS() const {
- return ((_config.turboFl) ? kTurboTps : _normalTPS);
+ return ((_config._turboFl) ? kTurboTps : _normalTPS);
}
void HugoEngine::syncSoundSettings() {