aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-04-07 01:48:54 +0000
committerTravis Howell2006-04-07 01:48:54 +0000
commitc6c86ff172d45130ec618d00e505a894cb2b0fd6 (patch)
tree23b92a640ae40eff7f5aa2cca98bb7699ae043fa
parent38bf0af540fcdefa2844666734026c8bf47a989b (diff)
downloadscummvm-rg350-c6c86ff172d45130ec618d00e505a894cb2b0fd6.tar.gz
scummvm-rg350-c6c86ff172d45130ec618d00e505a894cb2b0fd6.tar.bz2
scummvm-rg350-c6c86ff172d45130ec618d00e505a894cb2b0fd6.zip
Ooops, cut and paste error in printScreenText()
svn-id: r21657
-rw-r--r--engines/simon/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/string.cpp b/engines/simon/string.cpp
index 5a7e6b975f..1a9400e394 100644
--- a/engines/simon/string.cpp
+++ b/engines/simon/string.cpp
@@ -283,7 +283,7 @@ void SimonEngine::printScreenText(uint vgaSpriteId, uint color, const char *stri
o_kill_sprite_simon2(2, vgaSpriteId);
if (getGameType() == GType_FF) {
- renderStringAmiga(1, color, width, height, convertedString);
+ renderString(1, color, width, height, convertedString);
} else {
color = color * 3 + 192;
if (getPlatform() == Common::kPlatformAmiga)