still another change on parser

This commit is contained in:
UbitUmarov
2023-02-23 03:08:55 +00:00
parent 8c7c991320
commit 20ef1d6aaf

View File

@@ -2212,14 +2212,14 @@ namespace OpenSim.Region.ScriptEngine.Shared
c = Unsafe.Add(ref MemoryMarshal.GetReference(s), indx);
rc = Utils.HexNibbleWithChk(c);
if (rc < 0)
return;
break;
checked
{
uvalue *= 16;
uvalue += (uint)rc;
}
value = (int)uvalue;
}
value = (int)uvalue;
return;
}
}