summaryrefslogtreecommitdiff
path: root/games-puzzle/flobopuyo/files/flobopuyo-0.20-gcc41.patch
blob: 765bcae8d21e9bb58b44b3003721e9abb4c3d118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
https://bugs.gentoo.org/106406
https://bugs.gentoo.org/121259
--- a/IosVector.cpp
+++ b/IosVector.cpp
@@ -104,3 +104,3 @@
 	for (int i = 0, j = getSize() ; i < j ; i++)
-		fprintf(stderr, "elt[%d]=%d ", i, (int)getElementAt(i));
+		fprintf(stderr, "elt[%d]=%p ", i, getElementAt(i));
 	fprintf(stderr, "\n");
--- a/PuyoGame.cpp
+++ b/PuyoGame.cpp
@@ -47,3 +47,3 @@
 	else
-		return (PuyoState)(int)(sequenceItems.getElementAt(sequence));
+		return (PuyoState)(long)(sequenceItems.getElementAt(sequence));
 }
--- a/PuyoGame.h
+++ b/PuyoGame.h
@@ -48,3 +48,3 @@
     void setPuyoState(PuyoState state);
-    bool PuyoPuyo::isFalling();
+    bool isFalling();
     int getPuyoX() const;