]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/game.cpp
Remove some obsolete window styles, added a new sizer flag
[wxWidgets.git] / demos / life / game.cpp
index a8be0b96e87fa9aae791c2f35731a38979fbe59e..5b7e6ce79aec25985e399d1328206d96bc130f70 100644 (file)
@@ -75,9 +75,9 @@ public:
 bool LifeCellBox::IsAlive(int dx, int dy) const
 {
     if (dy > 3)
-        return (m_live2 & 1 << ((dy - 4) * 8 + dx));
+        return (bool)(m_live2 & 1 << ((dy - 4) * 8 + dx));
     else
-        return (m_live1 & 1 << ((dy) * 8 + dx));
+        return (bool)(m_live1 & 1 << ((dy) * 8 + dx));
 }
 
 // SetCell: