mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
Drascula: added more debug output
svn-id: r49706
This commit is contained in:
parent
9224a0bd6e
commit
eac1fdc7ca
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user