[Scummvm-cvs-logs] CVS: scummvm/simon vga.cpp,1.169,1.170
kirben
kirben at users.sourceforge.net
Sun Nov 20 02:27:01 CET 2005
Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19874/simon
Modified Files:
vga.cpp
Log Message:
Strings play back is DOS specific.
Index: vga.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/vga.cpp,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- vga.cpp 19 Nov 2005 17:51:14 -0000 1.169
+++ vga.cpp 20 Nov 2005 10:26:14 -0000 1.170
@@ -1780,10 +1780,7 @@
if (getGameType() == GType_FF) {
uint16 pan = vc_read_next_word();
uint16 vol = vc_read_next_word();
- debug(0, "STUB: vc52_playSound: snd %d pan %d vol %d", sound, pan, vol);
-
_sound->playSoundData(_curSfxFile, sound, pan, vol, ambient);
-
} else if (getGameType() == GType_SIMON2) {
if (ambient) {
_sound->playAmbient(sound);
@@ -1792,7 +1789,7 @@
}
} else if (getFeatures() & GF_TALKIE) {
_sound->playEffects(sound);
- } else {
+ } else if (getGameId() == GID_SIMON1DOS) {
playSting(sound);
}
}
More information about the Scummvm-git-logs
mailing list