diff options
-rw-r--r-- | engines/groovie/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/graphics.cpp b/engines/groovie/graphics.cpp index f80a1eb693..22dbacb085 100644 --- a/engines/groovie/graphics.cpp +++ b/engines/groovie/graphics.cpp @@ -131,7 +131,7 @@ void GraphicsMan::fadeOut() { void GraphicsMan::applyFading(int step) { // Calculate the fade factor for the given step - int factorR, factorG, factorB; + int factorR = 0, factorG = 0, factorB = 0; if (_fading == 1) { // Fading in factorR = (step << 2); |