Przeglądaj źródła

fix for Int/UInt

ncannasse 12 lat temu
rodzic
commit
def10b7757
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      hxd/IndexBuffer.hx

+ 1 - 1
hxd/IndexBuffer.hx

@@ -14,7 +14,7 @@ private class InnerIterator {
 	public inline function hasNext() {
 		return pos < len;
 	}
-	public inline function next() {
+	public inline function next() : Int {
 		return b[pos++];
 	}
 }