This commit is contained in:
aozhiwei 2021-12-01 19:57:56 +08:00
parent 3997a196ec
commit 945937c006

View File

@ -70,7 +70,10 @@ class DynData extends BaseModel {
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)