aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo
diff options
context:
space:
mode:
authorEugene Sandulenko2016-05-08 23:06:21 +0200
committerEugene Sandulenko2016-05-08 23:06:21 +0200
commit95884c396b667e048af933292f40fc18da2cefd1 (patch)
tree8100d1a79c215dc489f643fea24d1c42d494f2fe /engines/sherlock/tattoo
parentb731bbf8040392ff074c439bfbd498521bc7bda1 (diff)
downloadscummvm-rg350-95884c396b667e048af933292f40fc18da2cefd1.tar.gz
scummvm-rg350-95884c396b667e048af933292f40fc18da2cefd1.tar.bz2
scummvm-rg350-95884c396b667e048af933292f40fc18da2cefd1.zip
SHERLOCK RT: Actually clear screen instead of a useless call. CID 1308097
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r--engines/sherlock/tattoo/tattoo_journal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_journal.cpp b/engines/sherlock/tattoo/tattoo_journal.cpp
index 18ec3db082..4d4f37f8d5 100644
--- a/engines/sherlock/tattoo/tattoo_journal.cpp
+++ b/engines/sherlock/tattoo/tattoo_journal.cpp
@@ -66,7 +66,7 @@ void TattooJournal::show() {
// Set screen to black, and set background
screen._backBuffer1.SHblitFrom((*_journalImages)[0], Common::Point(0, 0));
- screen.empty();
+ screen.clear();
screen.setPalette(palette);
if (_journal.empty()) {