tz_manager: Fix character offset not advancing

This commit is contained in:
lat9nq 2023-06-03 22:35:19 -04:00
parent 63c51abe42
commit dea61f5d00

View File

@ -149,6 +149,7 @@ static constexpr bool GetInteger(const char* name, int& offset, int& value, int
if (value > max) {
return {};
}
offset++;
temp = name[offset];
} while (IsDigit(temp));