From 1d25dd03793ebaf3b2676937f2ecf7890c63487b Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 17 Sep 2011 11:24:56 +0200 Subject: [PATCH] Fix status display of plasma output boosters during game. --- code/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/misc.cpp b/code/misc.cpp index ddeaa32..dca2d67 100644 --- a/code/misc.cpp +++ b/code/misc.cpp @@ -361,7 +361,7 @@ void doInfo() SDL_FillRect(screen, &bar, yellow); } } - else if (i <= currentGame.maxPlasmaDamage) + else if (i <= currentGame.maxPlasmaOutput) SDL_FillRect(screen, &bar, darkYellow); bar.x += 30; }