My hacks to cliopts.h is not necessary anymore.
This commit is contained in:
parent
072025d243
commit
ee795fa7af
|
@ -1,13 +1,14 @@
|
||||||
#include <PR/ultratypes.h>
|
#ifndef _CLIOPTS_H
|
||||||
#include "sm64.h"
|
#define _CLIOPTS_H
|
||||||
|
|
||||||
struct PCCLIOptions
|
struct PCCLIOptions {
|
||||||
{
|
unsigned int SkipIntro;
|
||||||
u8 SkipIntro;
|
unsigned int FullScreen;
|
||||||
u8 FullScreen;
|
char ConfigFile[1024];
|
||||||
char * ConfigFile;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extern struct PCCLIOptions gCLIOpts;
|
extern struct PCCLIOptions gCLIOpts;
|
||||||
|
|
||||||
void parse_cli_opts(int argc, char* argv[]);
|
void parse_cli_opts(int argc, char* argv[]);
|
||||||
|
|
||||||
|
#endif // _CLIOPTS_H
|
||||||
|
|
Loading…
Reference in New Issue