diff options
author | Travis Howell | 2006-04-07 01:48:54 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-07 01:48:54 +0000 |
commit | c6c86ff172d45130ec618d00e505a894cb2b0fd6 (patch) | |
tree | 23b92a640ae40eff7f5aa2cca98bb7699ae043fa | |
parent | 38bf0af540fcdefa2844666734026c8bf47a989b (diff) | |
download | scummvm-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.cpp | 2 |
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) |