You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
696 B

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;