aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authordhewg2011-03-29 22:13:31 +0200
committerdhewg2011-03-29 22:13:31 +0200
commitb065007c8f7cd7ca55c1878080d24ade4758ad61 (patch)
tree5629d3f93227f424a01c16b23f4f4015f10784fb /common
parentd83a83ef5021c1e329127d3c6402088aeb1c1dd1 (diff)
downloadscummvm-rg350-b065007c8f7cd7ca55c1878080d24ade4758ad61.tar.gz
scummvm-rg350-b065007c8f7cd7ca55c1878080d24ade4758ad61.tar.bz2
scummvm-rg350-b065007c8f7cd7ca55c1878080d24ade4758ad61.zip
COMMON: Unbreak EventRecorder a little
Diffstat (limited to 'common')
-rw-r--r--common/EventRecorder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/EventRecorder.cpp b/common/EventRecorder.cpp
index d61fe0fe45..1dedbb5059 100644
--- a/common/EventRecorder.cpp
+++ b/common/EventRecorder.cpp
@@ -144,7 +144,6 @@ void EventRecorder::init() {
}
uint32 sign;
- //uint32 version;
uint32 randomSourceCount;
if (_recordMode == kRecorderPlayback) {
_playbackCount = 0;
@@ -168,7 +167,8 @@ void EventRecorder::init() {
if (sign != RECORD_SIGNATURE) {
error("Unknown record file signature");
}
- //version = _playbackFile->readUint32LE();
+
+ _playbackFile->readUint32LE(); // version
// conf vars
ConfMan.setBool("subtitles", _playbackFile->readByte() != 0);