diff options
author | Vincent Hamm | 2002-04-22 13:15:30 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-04-22 13:15:30 +0000 |
commit | e36f9560067be212b602af1b85aa945e52f4ce93 (patch) | |
tree | 02c78ff414c8e8d3b100db1f0caaef5fbad0a293 | |
parent | a2217e35ff440f1d24c1cbd673f8f77b0d9a2663 (diff) | |
download | scummvm-rg350-e36f9560067be212b602af1b85aa945e52f4ce93.tar.gz scummvm-rg350-e36f9560067be212b602af1b85aa945e52f4ce93.tar.bz2 scummvm-rg350-e36f9560067be212b602af1b85aa945e52f4ce93.zip |
Fixed samnmax intro thanks to segra suggestion
svn-id: r4051
-rw-r--r-- | string.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/string.cpp b/string.cpp index 7c63fec2ed..873a525743 100644 --- a/string.cpp +++ b/string.cpp @@ -531,7 +531,8 @@ void Scumm::drawString(int a) } } else { if (a == 1 && (_features & GF_AFTER_V6)) - charset._blitAlso = true; + if(string[a].no_talk_anim==0) + charset._blitAlso = true; if (_features & GF_OLD256) charset.printCharOld(chr); else |