소스 검색

Merge branch 'genpy' of github.com:Simn/haxe into genpy

frabbit 11 년 전
부모
커밋
0621082155
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      std/haxe/io/BytesInput.hx
  2. 1 0
      std/haxe/io/BytesOutput.hx

+ 1 - 0
std/haxe/io/BytesInput.hx

@@ -55,6 +55,7 @@ class BytesInput extends Input {
 		this.len = len;
 		this.len = len;
 		this.totlen = len;
 		this.totlen = len;
 		#end
 		#end
+		bigEndian = false;
 	}
 	}
 
 
 	inline function get_position() : Int {
 	inline function get_position() : Int {

+ 1 - 0
std/haxe/io/BytesOutput.hx

@@ -39,6 +39,7 @@ class BytesOutput extends Output {
 		#else
 		#else
 		b = new BytesBuffer();
 		b = new BytesBuffer();
 		#end
 		#end
+		bigEndian = false;
 	}
 	}
 
 
 	inline function get_length() : Int {
 	inline function get_length() : Int {