diff options
author | uruk | 2014-06-13 22:20:19 +0200 |
---|---|---|
committer | uruk | 2014-06-13 22:20:19 +0200 |
commit | 63c0cb40feb9acfb600503688358af28da4f14b7 (patch) | |
tree | 7aaebf97fe9b907d0301db735027bb842a50ef92 /engines | |
parent | 52fb03fc97d852a0a5c19d72599d678ac536514d (diff) | |
download | scummvm-rg350-63c0cb40feb9acfb600503688358af28da4f14b7.tar.gz scummvm-rg350-63c0cb40feb9acfb600503688358af28da4f14b7.tar.bz2 scummvm-rg350-63c0cb40feb9acfb600503688358af28da4f14b7.zip |
CGE2: Stub snSay again.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cge2/snail.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/cge2/snail.cpp b/engines/cge2/snail.cpp index c086d2b17b..ee94ab8894 100644 --- a/engines/cge2/snail.cpp +++ b/engines/cge2/snail.cpp @@ -585,9 +585,7 @@ void CGE2Engine::snSay(Sprite *spr, int val) { int i = val; if (i < 256) i -= 100; - // TODO: These 2 lines may need some re-check with the whole sound-code! - snSound(spr, i); - _commandStat._wait = &_sound->_smpinf._counter; + warning("STUB: CGE2Engine::snSay"); // TODO: Implement it with the revision of the sound code! } } } |