Drascula: added more debug output

svn-id: r49706
This commit is contained in:
Eugene Sandulenko 2010-06-15 10:19:25 +00:00
parent 9224a0bd6e
commit eac1fdc7ca
2 changed files with 6 additions and 0 deletions

View File

@ -131,6 +131,8 @@ void DrasculaEngine::cleanupString(char *string) {
}
void DrasculaEngine::converse(int index) {
debug(4, "converse(%d)", index);
char fileName[20];
sprintf(fileName, "op_%d.cal", index);
Common::SeekableReadStream *stream = _archives.open(fileName);
@ -279,6 +281,8 @@ void DrasculaEngine::converse(int index) {
}
void DrasculaEngine::response(int function) {
debug(4, "response(%d)", function);
playTalkSequence(function);
if (currentChapter == 2) {

View File

@ -65,6 +65,8 @@ void DrasculaEngine::selectVerbFromBar() {
}
void DrasculaEngine::selectVerb(int verb) {
debug(4, "selectVerb(%d)", verb);
int c = _menuScreen ? 0 : 171;
if (currentChapter == 5) {