Build on new PC, fix wheel not scrolling

This commit is contained in:
krzosa
2025-12-21 22:04:39 +01:00
parent c8a7c75dbe
commit 79d709d391
6 changed files with 30 additions and 13 deletions

View File

@@ -369,7 +369,7 @@ API Int SkipNumber(String16 *string) {
if (col.len == 0) return -1;
Scratch scratch;
String num_string = ToString(scratch, col);
Int result = strtoll(num_string.data, NULL, 10);
Int result = strtoll(num_string.data, NULL, 10);
return result;
}
@@ -416,4 +416,4 @@ API Int ChopNumber(String16 *string) {
String num_string = ToString(scratch, col);
Int result = strtoll(num_string.data, NULL, 10) - 1;
return result;
}
}