ACCESS: Fix derived Screen copyBlock method signature
This commit is contained in:
parent
371b50e75a
commit
f1f50b3a9d
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue