summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-11 00:01:36 +0100
committerIra Rice <irarice@gmail.com>2009-02-10 20:19:45 -0700
commitd99b00a149e7828adb3c4651069483e51b0b458b (patch)
tree33f07f9d18dd006d10b14ff2dffbcbe337809d0c /src/game.cpp
parentd268447e18c6e3edd80658f8f8d4317740c33af9 (diff)
downloadmana-client-d99b00a149e7828adb3c4651069483e51b0b458b.tar.gz
mana-client-d99b00a149e7828adb3c4651069483e51b0b458b.tar.bz2
mana-client-d99b00a149e7828adb3c4651069483e51b0b458b.tar.xz
mana-client-d99b00a149e7828adb3c4651069483e51b0b458b.zip
Removed many pointless comparisons with NULL
Sometimes it's nice for clarity, but most of the time this is just clutter. C++ != Java. :)
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 99888c73..9552c2ef 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -516,8 +516,8 @@ void Game::handleInput()
{
// Input chat window
if (!(chatWindow->isInputFocused() ||
- deathNotice != NULL ||
- weightNotice != NULL))
+ deathNotice ||
+ weightNotice))
{
// Quit by pressing Enter if the exit confirm is there
if (exitConfirm &&