aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo
diff options
context:
space:
mode:
authorStrangerke2012-06-18 21:23:39 +0200
committerStrangerke2012-06-18 21:23:39 +0200
commit53ee7f52a9e39e90313ada5613dd89d4fdbe3943 (patch)
treeeeea4ca4535b82fb5dba7c52f511fc04ea9acadf /engines/hugo
parentad2b898eb39af8d7edb76788abc3366783d4c99a (diff)
downloadscummvm-rg350-53ee7f52a9e39e90313ada5613dd89d4fdbe3943.tar.gz
scummvm-rg350-53ee7f52a9e39e90313ada5613dd89d4fdbe3943.tar.bz2
scummvm-rg350-53ee7f52a9e39e90313ada5613dd89d4fdbe3943.zip
HUGO: Remove dead code
Diffstat (limited to 'engines/hugo')
-rw-r--r--engines/hugo/file.h3
-rw-r--r--engines/hugo/hugo.cpp15
2 files changed, 1 insertions, 17 deletions
diff --git a/engines/hugo/file.h b/engines/hugo/file.h
index e4aa7f7fec..1438bd2054 100644
--- a/engines/hugo/file.h
+++ b/engines/hugo/file.h
@@ -123,9 +123,6 @@ protected:
private:
byte *convertPCC(byte *p, const uint16 y, const uint16 bpl, ImagePtr dataPtr) const;
UifHdr *getUIFHeader(const Uif id);
-
-//Strangerke : Not used?
- void printBootText();
};
class FileManager_v1d : public FileManager {
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index f2db630198..9d28e0ac69 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -541,19 +541,6 @@ void HugoEngine::initStatus() {
// Initialize every start of new game
_status._tick = 0; // Tick count
_status._viewState = kViewIdle; // View state
-
-// Strangerke - Suppress as related to playback
-// _status._recordFl = false; // Not record mode
-// _status._playbackFl = false; // Not playback mode
-// Strangerke - Not used ?
-// _status._mmtime = false; // Multimedia timer support
-// _status._helpFl = false; // Not calling WinHelp()
-// _status._demoFl = false; // Not demo mode
-// _status._path[0] = 0; // Path to write files
-// _status._screenWidth = 0; // Desktop screen width
-// _status._saveTick = 0; // Time of last save
-// _status._saveSlot = 0; // Slot to save/restore game
-// _status._textBoxFl = false; // Not processing a text box
}
/**
@@ -566,7 +553,7 @@ void HugoEngine::initConfig() {
_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
+ _file->readBootFile(); // Read startup structure
}
/**