소스 검색

php : fixed bug in Std.rand (on windows the range was limited)

Franco Ponticelli 14 년 전
부모
커밋
fcf92999f7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/php/_std/Std.hx

+ 1 - 1
std/php/_std/Std.hx

@@ -51,6 +51,6 @@
 	}
 
 	public static function random( x : Int ) : Int {
-		return untyped __call__("rand", 0, x-1);
+		return untyped __call__("mt_rand", 0, x-1);
 	}
 }