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

dreammaster dreammaster at scummvm.org
Sat May 28 03:54:46 CEST 2016


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:
f1f50b3a9d ACCESS: Fix derived Screen copyBlock method signature


Commit: f1f50b3a9d9df8a7b76d67ded71a2f55fb20f8c1
    https://github.com/scummvm/scummvm/commit/f1f50b3a9d9df8a7b76d67ded71a2f55fb20f8c1
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-05-27T21:54:41-04:00

Commit Message:
ACCESS: Fix derived Screen copyBlock method signature

Changed paths:
    engines/access/screen.cpp
    engines/access/screen.h



diff --git a/engines/access/screen.cpp b/engines/access/screen.cpp
index e62af9f..2d29ad0 100644
--- a/engines/access/screen.cpp
+++ b/engines/access/screen.cpp
@@ -253,7 +253,7 @@ void Screen::restoreScreen() {
 	_screenYOff = _screenSave._screenYOff;
 }
 
-void Screen::copyBlock(ASurface *src, const Common::Rect &bounds) {
+void Screen::copyBlock(BaseSurface *src, const Common::Rect &bounds) {
 	Common::Rect destBounds = bounds;
 	destBounds.translate(_windowXAdd, _windowYAdd + _screenYOff);
 
diff --git a/engines/access/screen.h b/engines/access/screen.h
index 9330054..1c19325 100644
--- a/engines/access/screen.h
+++ b/engines/access/screen.h
@@ -86,7 +86,7 @@ public:
 	 */
 	virtual void update();
 
-	virtual void copyBlock(ASurface *src, const Common::Rect &bounds);
+	virtual void copyBlock(BaseSurface *src, const Common::Rect &bounds);
 
 	virtual void restoreBlock();
 






More information about the Scummvm-git-logs mailing list