Compare commits

...

2 Commits

Author SHA1 Message Date
1f1a11f886 fix: $ 2023-07-29 20:24:46 +02:00
2d1c5ee458 update irongolem 2023-07-29 20:19:06 +02:00
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit f05f3945fe68a1a8b03deb967d71a0dcb70ba90d Subproject commit e417a01f9a093cdf7b07abff78a5196d1f07e61d

View File

@ -45,9 +45,9 @@ get_number(data, str)
if ([[str]] == '$') if ([[str]] == '$')
{ {
if (start == 0 - 1) if (start == 0 - 1)
start = data + LOCATION_LENGTH; start = [data + LOCATION_LENGTH] - 1;
else else
stop = data + LOCATION_LENGTH; stop = [data + LOCATION_LENGTH] - 1;
[str] = [str] + 1; [str] = [str] + 1;
} }
else if (isdigit([[str]])) else if (isdigit([[str]]))