diff options
author | Torbjörn Andersson | 2015-07-12 08:35:09 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2015-07-12 08:35:09 +0200 |
commit | a138fed53cb100e7d168695d8143d40e3d206d18 (patch) | |
tree | 0440680352a70b78ec03105eca26c6f9ccf4aac8 /engines/sherlock/tattoo | |
parent | 7bed7440c3faaa9b4ed7ebdbcba91b0ee5f7d234 (diff) | |
download | scummvm-rg350-a138fed53cb100e7d168695d8143d40e3d206d18.tar.gz scummvm-rg350-a138fed53cb100e7d168695d8143d40e3d206d18.tar.bz2 scummvm-rg350-a138fed53cb100e7d168695d8143d40e3d206d18.zip |
SHERLOCK: Remove extra parameter to print()
Otherwise the format string would be 0, and that can't be right.
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_darts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } |