aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/engine.cpp
diff options
context:
space:
mode:
authorArnaud Boutonné2010-09-02 12:50:10 +0000
committerArnaud Boutonné2010-09-02 12:50:10 +0000
commit21a09427de2cc8b251a13150d6d4ba8576fa1430 (patch)
treee2aa640c2a397e5183dc1ac5ad8bd2b3d1df0438 /engines/hugo/engine.cpp
parente284852b64cc772c6475fc9d2db35122bea090f8 (diff)
downloadscummvm-rg350-21a09427de2cc8b251a13150d6d4ba8576fa1430.tar.gz
scummvm-rg350-21a09427de2cc8b251a13150d6d4ba8576fa1430.tar.bz2
scummvm-rg350-21a09427de2cc8b251a13150d6d4ba8576fa1430.zip
HUGO: Cleanup and fix mouse pointer issue
- Suppress commented code - Suppress readConfig() and writeConfig() - Fix the disappearing mouse issue svn-id: r52495
Diffstat (limited to 'engines/hugo/engine.cpp')
-rw-r--r--engines/hugo/engine.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/engines/hugo/engine.cpp b/engines/hugo/engine.cpp
index 1a097cd90a..ab31f5da93 100644
--- a/engines/hugo/engine.cpp
+++ b/engines/hugo/engine.cpp
@@ -124,26 +124,18 @@ void HugoEngine::initConfig(inst_t action) {
_config.cx = VIEW_DX * 2; // Window view size
_config.cy = VIEW_DY * 2;
-// _config.wx = 0;
-// _config.wy = 0;
-
_config.musicVolume = 85; // Music volume %
_config.soundVolume = 100; // Sound volume %
initPlaylist(_config.playlist); // Initialize default tune playlist
file().readBootFile(); // Read startup structure
- file().readConfig(); // Read user's saved config
cx = _config.cx; // Save these around OnFileNew()
cy = _config.cy;
-// wx = _config.wx;
-// wy = _config.wy;
break;
case RESET:
_config.cx = cx; // Restore cx, cy
_config.cy = cy;
-// _config.wx = wx;
-// _config.wy = wy;
// Find first tune and play it
for (i = 0; i < MAX_TUNES; i++)