[Scummvm-cvs-logs] scummvm master -> 9572bc6e306dc82e0d2f00d7398896d317630ef0

sev- sev at scummvm.org
Mon Jul 15 13:33:00 CEST 2013


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:
9572bc6e30 RECORDER: Fix wrong argument order


Commit: 9572bc6e306dc82e0d2f00d7398896d317630ef0
    https://github.com/scummvm/scummvm/commit/9572bc6e306dc82e0d2f00d7398896d317630ef0
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-07-15T04:31:34-07:00

Commit Message:
RECORDER: Fix wrong argument order

Changed paths:
    common/recorderfile.cpp



diff --git a/common/recorderfile.cpp b/common/recorderfile.cpp
index e6838ed..d08bc59 100644
--- a/common/recorderfile.cpp
+++ b/common/recorderfile.cpp
@@ -44,7 +44,7 @@ PlaybackFile::PlaybackFile() : _tmpRecordFile(_tmpBuffer, kRecordBuffSize), _tmp
 	_headerDumped = false;
 	_recordCount = 0;
 	_eventsSize = 0;
-	memset(_tmpBuffer, kRecordBuffSize, 1);
+	memset(_tmpBuffer, 1, kRecordBuffSize);
 }
 
 PlaybackFile::~PlaybackFile() {






More information about the Scummvm-git-logs mailing list