diff options
author | Joost Peters | 2004-02-11 21:13:16 +0000 |
---|---|---|
committer | Joost Peters | 2004-02-11 21:13:16 +0000 |
commit | c1c01bcc0e6209afe0e15cbc3a3c3e8b037c8510 (patch) | |
tree | ca2833ad9f6eefa247672f21dbdc321576497c0b | |
parent | f4b3100b35fa31067766e15ce41a21d624fa00aa (diff) | |
download | scummvm-rg350-c1c01bcc0e6209afe0e15cbc3a3c3e8b037c8510.tar.gz scummvm-rg350-c1c01bcc0e6209afe0e15cbc3a3c3e8b037c8510.tar.bz2 scummvm-rg350-c1c01bcc0e6209afe0e15cbc3a3c3e8b037c8510.zip |
Don't do unnecessary checks
svn-id: r12827
-rw-r--r-- | queen/logic.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/queen/logic.cpp b/queen/logic.cpp index 2c7cdb8006..8181abe32e 100644 --- a/queen/logic.cpp +++ b/queen/logic.cpp @@ -2119,8 +2119,7 @@ bool LogicGame::preChangeRoom() { // XXX enable talking for talkie version - if (!_vm->resource()->isDemo() && !_vm->resource()->isInterview() && !_vm->resource()->isFloppy() - && ConfMan.getBool("alt_intro")) { + if (ConfMan.getBool("alt_intro") && !_vm->resource()->isDemo() && !_vm->resource()->isInterview() && !_vm->resource()->isFloppy()) { playCutaway("cintr.cut"); } else { playCutaway("cdint.cut"); |