aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);