diff options
author | Eugene Sandulenko | 2014-01-06 22:48:28 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-01-06 23:24:36 +0200 |
commit | 8a9366527f26cdd853779b4f84d2c951a995be9f (patch) | |
tree | 971592d2470bd118fe32ab7674699f73848d0627 /engines | |
parent | 352b8a67f02bce2f3bc56aece21bffc52eb0508d (diff) | |
download | scummvm-rg350-8a9366527f26cdd853779b4f84d2c951a995be9f.tar.gz scummvm-rg350-8a9366527f26cdd853779b4f84d2c951a995be9f.tar.bz2 scummvm-rg350-8a9366527f26cdd853779b4f84d2c951a995be9f.zip |
FULLPIPE: Remove redundant check
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/scenes/scene22.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene22.cpp b/engines/fullpipe/scenes/scene22.cpp index 657fe12ce1..13c9ab36e9 100644 --- a/engines/fullpipe/scenes/scene22.cpp +++ b/engines/fullpipe/scenes/scene22.cpp @@ -261,8 +261,7 @@ void sceneHandler22_stoolLogic(ExCommand *cmd) { mq->deleteExCommandByIndex(0, 0); - if (mq) - delete mq; + delete mq; mq = new MessageQueue(g_fp->_currentScene->getMessageQueueById(QU_SC22_TOSTOOL_R), 0, 0); |