From a138fed53cb100e7d168695d8143d40e3d206d18 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 12 Jul 2015 08:35:09 +0200 Subject: SHERLOCK: Remove extra parameter to print() Otherwise the format string would be 0, and that can't be right. --- engines/sherlock/tattoo/tattoo_darts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sherlock/tattoo/tattoo_darts.cpp b/engines/sherlock/tattoo/tattoo_darts.cpp index 0c2d80e04e..917b804602 100644 --- a/engines/sherlock/tattoo/tattoo_darts.cpp +++ b/engines/sherlock/tattoo/tattoo_darts.cpp @@ -879,7 +879,7 @@ int Darts::throwDart(int dartNum, int computer) { drawDartsLeft(dartNum, computer); if (!computer) { - screen.print(Common::Point(_dartInfo.left, _dartInfo.top + _spacing), 0, 0, FIXED(HitAKey)); + screen.print(Common::Point(_dartInfo.left, _dartInfo.top + _spacing), 0, FIXED(HitAKey)); screen.print(Common::Point(_dartInfo.left, _dartInfo.top + _spacing * 2), 0, FIXED(ToStart)); } -- cgit v1.2.3