mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 07:53:36 +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) {
|
void DrasculaEngine::converse(int index) {
|
||||||
|
debug(4, "converse(%d)", index);
|
||||||
|
|
||||||
char fileName[20];
|
char fileName[20];
|
||||||
sprintf(fileName, "op_%d.cal", index);
|
sprintf(fileName, "op_%d.cal", index);
|
||||||
Common::SeekableReadStream *stream = _archives.open(fileName);
|
Common::SeekableReadStream *stream = _archives.open(fileName);
|
||||||
@ -279,6 +281,8 @@ void DrasculaEngine::converse(int index) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void DrasculaEngine::response(int function) {
|
void DrasculaEngine::response(int function) {
|
||||||
|
debug(4, "response(%d)", function);
|
||||||
|
|
||||||
playTalkSequence(function);
|
playTalkSequence(function);
|
||||||
|
|
||||||
if (currentChapter == 2) {
|
if (currentChapter == 2) {
|
||||||
|
@ -65,6 +65,8 @@ void DrasculaEngine::selectVerbFromBar() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void DrasculaEngine::selectVerb(int verb) {
|
void DrasculaEngine::selectVerb(int verb) {
|
||||||
|
debug(4, "selectVerb(%d)", verb);
|
||||||
|
|
||||||
int c = _menuScreen ? 0 : 171;
|
int c = _menuScreen ? 0 : 171;
|
||||||
|
|
||||||
if (currentChapter == 5) {
|
if (currentChapter == 5) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user