From: John Tsiombikas Date: Fri, 31 Mar 2023 23:34:33 +0000 (+0200) Subject: foo X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=deeprace;a=commitdiff_plain;h=760bed725044d6fc354965ee7ff1b0d7d7f74abb foo --- diff --git a/Makefile.sgi b/Makefile.sgi index fe4c6e9..7654c7a 100644 --- a/Makefile.sgi +++ b/Makefile.sgi @@ -1,5 +1,5 @@ obj = src/main.o src/miniglut.o src/game.o src/scr_menu.o src/scr_game.o \ - src/util.o + src/util.o src/input.o bin = game dbg = -g diff --git a/libs/goat3d/src/json.c b/libs/goat3d/src/json.c index e38ea15..0a7f33d 100644 --- a/libs/goat3d/src/json.c +++ b/libs/goat3d/src/json.c @@ -305,7 +305,7 @@ struct json_arr *json_lookup_arr(struct json_obj *obj, const char *path, struct #define MAX_TOKEN_SIZE 512 struct parser { char *text; - char nextc; + int nextc; char *token; };