From 38aa58182e321be9dc72778a46684c10be5d494c Mon Sep 17 00:00:00 2001 From: Ensiform Date: Thu, 30 Apr 2015 09:02:20 -0500 Subject: [PATCH] JK2: Remove cstdint usage from icarus/tokenizer.h. It doesn't seem to be necessary right now. Switched usage to `unsigned int` as it is in the JA MP version of the file. Refs #651 #658 --- codeJK2/icarus/tokenizer.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codeJK2/icarus/tokenizer.h b/codeJK2/icarus/tokenizer.h index 70e83de392..aecb6ef901 100644 --- a/codeJK2/icarus/tokenizer.h +++ b/codeJK2/icarus/tokenizer.h @@ -25,7 +25,6 @@ along with this program; if not, see . #ifndef __TOKENIZER_H #define __TOKENIZER_H -#include #include #include #include @@ -427,7 +426,7 @@ class CTokenizer void SetErrorProc(LPTokenizerErrorProc errorProc); void AddParseStream(byte* data, long datasize); bool AddParseFile(const char *filename); - uint32_t ParseRGB(); + unsigned int ParseRGB(); long GetRemainingSize(); unsigned GetFlags();