Forráskód Böngészése

deal with semver fallout

Simon Krajewski 6 éve
szülő
commit
5964d1fc44
3 módosított fájl, 3 hozzáadás és 3 törlés
  1. 1 1
      std/hl/Bytes.hx
  2. 1 1
      std/hl/Format.hx
  3. 1 1
      std/hl/_std/String.hx

+ 1 - 1
std/hl/Bytes.hx

@@ -91,7 +91,7 @@ package hl;
 		return 0;
 	}
 
-	#if (hl_ver >= version("1.10"))
+	#if (hl_ver >= version("1.10.0"))
 	@:hlNative("std","bytes_compare16")
 	public function compare16( bytes : Bytes, size : Int ) : Int {
 		return 0;

+ 1 - 1
std/hl/Format.hx

@@ -60,7 +60,7 @@ class Format {
 	/**
 		Decode any image data into ARGB pixels
 	**/
-	#if (hl_ver >= version("1.10"))
+	#if (hl_ver >= version("1.10.0"))
 	@:hlNative("fmt","dxt_decode")
 	public static function decodeDXT( src : hl.Bytes, dst : hl.Bytes, width : Int, height : Int, dxtFormat : Int ) : Bool {
 		return false;

+ 1 - 1
std/hl/_std/String.hx

@@ -198,7 +198,7 @@ class String {
 		var s = Std.downcast(v, String);
 		if( s == null )
 			return hl.Api.comparePointer(this, v);
-		#if (hl_ver >= version("1.10"))
+		#if (hl_ver >= version("1.10.0"))
 		var v = bytes.compare16(s.bytes, length < s.length ? length : s.length);
 		#else
 		var v = bytes.compare(0, s.bytes, 0, (length < s.length ? length : s.length) << 1);