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

@@ -7,6 +7,7 @@
#include <stdarg.h>
#include <signal.h>
#include <stddef.h>
#include <stdlib.h>
#if defined(__APPLE__) && defined(__MACH__)

View File

@@ -363,4 +363,4 @@ API Int ChopNumber(String *string) {
if (col.len == 0) return -1;
Int result = strtoll(col.data, NULL, 10) - 1;
return result;
}
}

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;
}
}