From c04e739aedf62d91cc3c26e1149ab3cac4185720 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Andersson?= Date: Thu, 16 Dec 2021 20:30:51 +0100 Subject: [PATCH] SHERLOCK: Fix height of blinking cursor in Rose Tattoo journal search --- engines/sherlock/tattoo/tattoo_journal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sherlock/tattoo/tattoo_journal.cpp b/engines/sherlock/tattoo/tattoo_journal.cpp index cdafed4e29d..91f70649d1c 100644 --- a/engines/sherlock/tattoo/tattoo_journal.cpp +++ b/engines/sherlock/tattoo/tattoo_journal.cpp @@ -852,7 +852,7 @@ int TattooJournal::getFindName(bool printError) { blinkFlag = !blinkFlag; if (blinkFlag) { // Draw cursor - screen._backBuffer1.fillRect(Common::Rect(cursorX, cursorY, cursorX + 7, cursorY + 8), COMMAND_HIGHLIGHTED); + screen._backBuffer1.fillRect(Common::Rect(cursorX, cursorY, cursorX + 7, cursorY + 9), COMMAND_HIGHLIGHTED); screen.slamArea(cursorX, cursorY, 8, 9); } else {