diff options
| author | Torbjörn Andersson | 2003-12-31 12:58:18 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2003-12-31 12:58:18 +0000 |
| commit | 28eb8c4b76f5eb72569f7ab4138e59092ec8f15c (patch) | |
| tree | 49c2b876b820e2d0504cde2b9aff3f9f40cf89ed | |
| parent | bfd457d913117b5bc5a9d53eb81bd33c7b834f9a (diff) | |
| download | scummvm-rg350-28eb8c4b76f5eb72569f7ab4138e59092ec8f15c.tar.gz scummvm-rg350-28eb8c4b76f5eb72569f7ab4138e59092ec8f15c.tar.bz2 scummvm-rg350-28eb8c4b76f5eb72569f7ab4138e59092ec8f15c.zip | |
Don't allow the credits to be displayed while in conversation mode.
svn-id: r12052
| -rw-r--r-- | sword2/sword2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp index f4afd79ae2..972bafef31 100644 --- a/sword2/sword2.cpp +++ b/sword2/sword2.cpp @@ -366,7 +366,7 @@ void Sword2Engine::go() { pauseGame(); break; case 'c': - if (!DEMO) + if (!DEMO && !_logic->_choosing) _logic->fnPlayCredits(NULL); break; #ifdef _SWORD2_DEBUG |
