diff options
Diffstat (limited to 'engines/sludge/backdrop.cpp')
-rw-r--r-- | engines/sludge/backdrop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/backdrop.cpp b/engines/sludge/backdrop.cpp index 8ef14b2b09..b1c9e5f344 100644 --- a/engines/sludge/backdrop.cpp +++ b/engines/sludge/backdrop.cpp @@ -184,13 +184,13 @@ bool GraphicsManager::snapshot() { if (!freeze()) return false; - // draw snapshot to backdrop + // draw snapshot to rendersurface displayBase(); viewSpeech(); // ...and anything being said drawStatusBar(); // copy backdrop to snapshot - _snapshotSurface.copyFrom(_backdropSurface); + _snapshotSurface.copyFrom(_renderSurface); unfreeze(false); return true; |