My hacks to cliopts.h is not necessary anymore.

This commit is contained in:
yksoft1 2020-05-19 20:15:25 +08:00
parent 072025d243
commit ee795fa7af
1 changed files with 8 additions and 7 deletions

View File

@ -1,13 +1,14 @@
#include <PR/ultratypes.h>
#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