From 121e2a60d37b4134c61247362a01e26e6f812706 Mon Sep 17 00:00:00 2001 From: Arthur O'Dwyer Date: Wed, 27 Jun 2018 01:00:34 -0700 Subject: [PATCH] Silence a (bogus?) -Wmaybe-uninitialized from MinGW. --- game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.cpp b/game.cpp index 7b3751e6..f24e562b 100644 --- a/game.cpp +++ b/game.cpp @@ -3941,7 +3941,7 @@ void beastAttack(cell *c, bool player) { if(c2->monst && c2->stuntime) { cellwalker bull (c, d); int subdir = determinizeBullPush(bull); - int pushdir; + int pushdir = 0; cell *c3 = determinePush(bull, c2, subdir, [c2] (cell *c) { return passable(c, c2, P_BLOW); }, pushdir); if(c3 && c3 != c2) pushMonster(c3, c2, pushdir); @@ -3954,7 +3954,7 @@ void beastAttack(cell *c, bool player) { if(c2->wall == waThumperOn) { cellwalker bull (c, d); int subdir = determinizeBullPush(bull); - int pushdir; + int pushdir = 0; cell *c3 = determinePush(bull, c2, subdir, [c2] (cell *c) { return canPushThumperOn(c, c2, c); }, pushdir); if(c3 && c3 != c2) pushThumper(c2, c3);