Nicolas Cannasse 13 years ago
parent
commit
e067c878f5
1 changed files with 1 additions and 1 deletions
  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 );