From 2e944ef9000bc614aad66013332f61a4272f0b1b Mon Sep 17 00:00:00 2001 From: yksoft1 Date: Tue, 19 May 2020 20:15:25 +0800 Subject: [PATCH] My hacks to cliopts.h is not necessary anymore. --- src/pc/cliopts.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/pc/cliopts.h b/src/pc/cliopts.h index 75d78e8b..d20dcb4f 100644 --- a/src/pc/cliopts.h +++ b/src/pc/cliopts.h @@ -1,13 +1,14 @@ -#include -#include "sm64.h" +#ifndef _CLIOPTS_H +#define _CLIOPTS_H -struct PCCLIOptions -{ - u8 SkipIntro; - u8 FullScreen; - char * ConfigFile; +struct PCCLIOptions { + unsigned int SkipIntro; + unsigned int FullScreen; + char ConfigFile[1024]; }; extern struct PCCLIOptions gCLIOpts; void parse_cli_opts(int argc, char* argv[]); + +#endif // _CLIOPTS_H