aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/file.cpp')
-rw-r--r--engines/hugo/file.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp
index 691536eff4..ebda0e9035 100644
--- a/engines/hugo/file.cpp
+++ b/engines/hugo/file.cpp
@@ -473,17 +473,19 @@ void FileManager::initSavedGame() {
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);
+// fclose(fpb);
}
void FileManager::printBootText() {