Core: Fix up logging id for label symbols

This commit is contained in:
zilmar 2024-11-14 09:31:45 +10:30
parent 61aa53f1a5
commit 944dd0917a
1 changed files with 1 additions and 1 deletions

View File

@ -923,7 +923,7 @@ asmjit::Error CX86Ops::_log(const char * data, size_t size) noexcept
char c = AsmjitLog[Pos + 1 + i];
if (c >= '0' && c <= '9')
{
Value = (Value << 4) | (c - '0');
Value = (Value * 10) + (c - '0');
}
else
{