aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2003-08-22 01:47:15 +0000
committerJonathan Gray2003-08-22 01:47:15 +0000
commit485852ba6cdc52644a58eed5023e9cc28d0eb5a3 (patch)
tree6748271ad72f26fd5a77192d2ecad4ba535b612e
parentd9a78a5feb47fd6ee352ab6ed59d423113acf1a3 (diff)
downloadscummvm-rg350-485852ba6cdc52644a58eed5023e9cc28d0eb5a3.tar.gz
scummvm-rg350-485852ba6cdc52644a58eed5023e9cc28d0eb5a3.tar.bz2
scummvm-rg350-485852ba6cdc52644a58eed5023e9cc28d0eb5a3.zip
change sound queue overflow error to warning as error was supposed to be temporarily apparently...
svn-id: r9812
-rw-r--r--scumm/sound.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 0c6a7bc7c7..f49781dd7f 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -788,7 +788,9 @@ void Sound::soundKludge(int *list, int num) {
// is causing the sound queue overflows(in particular, to figure out
// the room/script/offset where the bug occurs). Please report your
// findings to Fingolfin.
- error("Sound que buffer overflow (%d + %d = %d)", _soundQuePos, num, _soundQuePos+num);
+ // Reverting to warning for now room 11, script 2016 offset 0x7Af9 was
+ // what it error'd on here
+ warning("Sound queue buffer overflow (%d + %d = %d)", _soundQuePos, num, _soundQuePos+num);
return;
}