Nicolas Cannasse 13 vuotta sitten
vanhempi
commit
e067c878f5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      std/haxe/io/Output.hx

+ 1 - 1
std/haxe/io/Output.hx

@@ -270,7 +270,7 @@ class Output {
 
 	#if haxe3
 
-	public function writeInt32( x : haxe.Int32 ) {
+	public function writeInt32( x : Int ) {
 		if( bigEndian ) {
 			writeByte( x >>> 24 );
 			writeByte( (x >> 16) & 0xFF );