]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/pile.cpp
fixed DLL build (patch 879706)
[wxWidgets.git] / demos / forty / pile.cpp
index cf1564751d69325eab66412e2f50c4d321ae429e..e8b5296f05014dccf0d76136f99c9369d7dbf866 100644 (file)
@@ -224,9 +224,9 @@ bool Pile::CanCardLeave(Card* card)
 {
     for (int i = 0; i <= m_topCard; i++)
     {
-       if (card == m_cards[i]) return TRUE;
+       if (card == m_cards[i]) return true;
     }
-    return FALSE;
+    return false;
 }
 
 // Calculate how far x, y is from top card in the pile
@@ -294,9 +294,9 @@ bool Pile::Overlap(int x, int y)
     if (x >= cardX - Card::GetWidth()  && x <= cardX + Card::GetWidth() &&
         y >= cardY - Card::GetHeight() && y <= cardY + Card::GetHeight())
     {
-           return TRUE;
+           return true;
     }
-    return FALSE;
+    return false;
 }