Build on new PC, fix wheel not scrolling
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
#include <stdarg.h>
|
||||
#include <signal.h>
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
#if defined(__APPLE__) && defined(__MACH__)
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user