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

dreammaster dreammaster at scummvm.org
Sat Nov 28 01:14:08 CET 2015


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:
e8aa00c975 ACCESS: Fix crash in demo when changing scene


Commit: e8aa00c9751c554e46bde5f74d0bab821d496a31
    https://github.com/scummvm/scummvm/commit/e8aa00c9751c554e46bde5f74d0bab821d496a31
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-11-27T19:13:36-05:00

Commit Message:
ACCESS: Fix crash in demo when changing scene

Changed paths:
    engines/access/scripts.cpp



diff --git a/engines/access/scripts.cpp b/engines/access/scripts.cpp
index 1232856..25b8c97 100644
--- a/engines/access/scripts.cpp
+++ b/engines/access/scripts.cpp
@@ -164,7 +164,7 @@ void Scripts::charLoop() {
 	_sequence = 2000;
 	searchForSequence();
 	_vm->_images.clear();
-	_vm->_buffer2.blitFrom(_vm->_buffer1);
+	_vm->_buffer2.copyBlock(&_vm->_buffer1, Common::Rect(0, 0, _vm->_buffer2.w, _vm->_buffer2.h));
 	_vm->_newRects.clear();
 
 	executeScript();






More information about the Scummvm-git-logs mailing list