[Scummvm-cvs-logs] scummvm master -> b065007c8f7cd7ca55c1878080d24ade4758ad61

dhewg dhewg at wiibrew.org
Tue Mar 29 22:16:11 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
b065007c8f COMMON: Unbreak EventRecorder a little


Commit: b065007c8f7cd7ca55c1878080d24ade4758ad61
    https://github.com/scummvm/scummvm/commit/b065007c8f7cd7ca55c1878080d24ade4758ad61
Author: dhewg (dhewg at wiibrew.org)
Date: 2011-03-29T13:13:31-07:00

Commit Message:
COMMON: Unbreak EventRecorder a little

Changed paths:
    common/EventRecorder.cpp



diff --git a/common/EventRecorder.cpp b/common/EventRecorder.cpp
index d61fe0f..1dedbb5 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);






More information about the Scummvm-git-logs mailing list