1
This commit is contained in:
parent
3997a196ec
commit
945937c006
@ -70,7 +70,10 @@ class DynData extends BaseModel {
|
|||||||
|
|
||||||
public static function calcKey($x, $y)
|
public static function calcKey($x, $y)
|
||||||
{
|
{
|
||||||
$key = self::calcKey($x, $y);
|
$low32 = (int)$x;
|
||||||
|
$high32 = (int)$y;
|
||||||
|
$key = $low32 + ($high32 << 32);
|
||||||
|
return $key;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function internalSetV($x, $y, $val)
|
private static function internalSetV($x, $y, $val)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user