aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2015-04-24 01:47:25 -0500
committerPaul Gilbert2015-04-24 01:47:25 -0500
commite2b233e0bb62e14fcf454cda74966dd5df071654 (patch)
treee82e91bc30c51e9f5ce8c94b4f5cb200c651461c
parenta5edfcc3f5e59a8bb68b6bcbc8d7b6ce72ec633a (diff)
downloadscummvm-rg350-e2b233e0bb62e14fcf454cda74966dd5df071654.tar.gz
scummvm-rg350-e2b233e0bb62e14fcf454cda74966dd5df071654.tar.bz2
scummvm-rg350-e2b233e0bb62e14fcf454cda74966dd5df071654.zip
SHERLOCK: Fix button display in talk dialog
-rw-r--r--engines/sherlock/talk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/talk.cpp b/engines/sherlock/talk.cpp
index 6740e89efc..3eeb0f0af5 100644
--- a/engines/sherlock/talk.cpp
+++ b/engines/sherlock/talk.cpp
@@ -672,7 +672,7 @@ void Talk::drawInterface() {
screen.makeButton(Common::Rect(99, CONTROLS_Y, 139, CONTROLS_Y + 10),
119 - screen.stringWidth("Exit") / 2, "Exit");
screen.makeButton(Common::Rect(140, CONTROLS_Y, 180, CONTROLS_Y + 10),
- 159 - screen.stringWidth("Up"), "Up");
+ 159 - screen.stringWidth("Up") / 2, "Up");
screen.makeButton(Common::Rect(181, CONTROLS_Y, 221, CONTROLS_Y + 10),
200 - screen.stringWidth("Down") / 2, "Down");
} else {