summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-01-09 11:20:06 +0100
committerIra Rice <irarice@gmail.com>2009-01-09 08:31:17 -0700
commit4cddba3b2a759d2d794809a6b7cc3e46ca88d9dd (patch)
tree5d942b0faf248ed0464ae71cc5887755ef6bce4e /src
parent621df3bc632054573f910449678525c01d6de81d (diff)
downloadmana-client-4cddba3b2a759d2d794809a6b7cc3e46ca88d9dd.tar.gz
mana-client-4cddba3b2a759d2d794809a6b7cc3e46ca88d9dd.tar.bz2
mana-client-4cddba3b2a759d2d794809a6b7cc3e46ca88d9dd.tar.xz
mana-client-4cddba3b2a759d2d794809a6b7cc3e46ca88d9dd.zip
Style fix for last commit
Diffstat (limited to 'src')
-rw-r--r--src/gui/updatewindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp
index 2c15037c..fab048fc 100644
--- a/src/gui/updatewindow.cpp
+++ b/src/gui/updatewindow.cpp
@@ -225,7 +225,7 @@ int UpdaterWindow::updateProgress(void *ptr,
float progress = dn / dt;
UpdaterWindow *uw = reinterpret_cast<UpdaterWindow *>(ptr);
- if(progress != progress) progress = 0.0f; // check for NaN
+ if (progress != progress) progress = 0.0f; // check for NaN
if (progress < 0.0f) progress = 0.0f; // no idea how this could ever happen, but why not check for it anyway.
if (progress > 1.0f) progress = 1.0f;