aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-22 21:54:26 -0400
committerPaul Gilbert2016-03-22 21:54:26 -0400
commit06bd62fed403684afe00c018647cb4febeeddcce (patch)
treedd7b429a74c57ce685255939a20d1e26de068426 /engines/titanic/core
parent46e554b981fce68e62e1573881fce1a0fcfed806 (diff)
downloadscummvm-rg350-06bd62fed403684afe00c018647cb4febeeddcce.tar.gz
scummvm-rg350-06bd62fed403684afe00c018647cb4febeeddcce.tar.bz2
scummvm-rg350-06bd62fed403684afe00c018647cb4febeeddcce.zip
TITANIC: First scene starting to be displayed
Diffstat (limited to 'engines/titanic/core')
-rw-r--r--engines/titanic/core/game_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/core/game_object.cpp b/engines/titanic/core/game_object.cpp
index acd34decfc..8f2b333990 100644
--- a/engines/titanic/core/game_object.cpp
+++ b/engines/titanic/core/game_object.cpp
@@ -172,7 +172,7 @@ void CGameObject::draw(CScreenManager *screenManager) {
if (_bounds.intersects(getGameManager()->_bounds)) {
if (_surface) {
Point destPos(_bounds.left, _bounds.top);
- screenManager->blitFrom(0, _surface, &destPos);
+ screenManager->blitFrom(SURFACE_BACKBUFFER, _surface, &destPos);
}
if (_field90)