aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/file.cpp
diff options
context:
space:
mode:
authorArnaud Boutonné2010-10-31 21:20:22 +0000
committerArnaud Boutonné2010-10-31 21:20:22 +0000
commitf757d489a0d2ce13a453a4fbc1f2c0db5d3a4dd7 (patch)
treecc6057e494885c8b005f687a4e8af63dc8e0ef3f /engines/hugo/file.cpp
parent43221a32539b707361efa9a3be4691fc1d943554 (diff)
downloadscummvm-rg350-f757d489a0d2ce13a453a4fbc1f2c0db5d3a4dd7.tar.gz
scummvm-rg350-f757d489a0d2ce13a453a4fbc1f2c0db5d3a4dd7.tar.bz2
scummvm-rg350-f757d489a0d2ce13a453a4fbc1f2c0db5d3a4dd7.zip
HUGO: Suppress Playback code
Also change 3 variable types in order to match types used in create_hugo svn-id: r53987
Diffstat (limited to 'engines/hugo/file.cpp')
-rw-r--r--engines/hugo/file.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp
index ebda0e9035..44dd287ed1 100644
--- a/engines/hugo/file.cpp
+++ b/engines/hugo/file.cpp
@@ -470,24 +470,6 @@ void FileManager::initSavedGame() {
Utils::Error(WRITE_ERR, "%s", _vm->_initFilename.c_str());
}
-void FileManager::openPlaybackFile(bool playbackFl, bool recordFl) {
- debugC(1, kDebugFile, "openPlaybackFile(%d, %d)", (playbackFl) ? 1 : 0, (recordFl) ? 1 : 0);
-
-/*
- if (playbackFl) {
- if (!(fpb = fopen(PBFILE, "r+b")))
- Utils::Error(FILE_ERR, "%s", PBFILE);
- } else if (recordFl) {
- fpb = fopen(PBFILE, "wb");
- }
-*/
- pbdata.time = 0; // Say no key available
-}
-
-void FileManager::closePlaybackFile() {
-// fclose(fpb);
-}
-
void FileManager::printBootText() {
// Read the encrypted text from the boot file and print it
debugC(1, kDebugFile, "printBootText");