X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fcfgopt.h;h=2bbaffb8e92439a46f6de60267a29afe0a7af70a;hb=dcc815e69d92ecf20b063e38903bcedee7a19f2d;hp=5172d20a19a881258a292e2c06e4128d0edcf5b3;hpb=e8b26db00c934d141f16652cb8dcbeae23b17e48;p=dosdemo diff --git a/src/cfgopt.h b/src/cfgopt.h index 5172d20..2bbaffb 100644 --- a/src/cfgopt.h +++ b/src/cfgopt.h @@ -1,12 +1,25 @@ #ifndef CFGOPT_H_ #define CFGOPT_H_ +#ifndef MSDOS +enum { + SCALER_NEAREST, + SCALER_LINEAR, + + NUM_SCALERS +}; +#endif + struct options { const char *start_scr; int music; int mouse, sball; int vsync; int dbginfo; +#ifndef MSDOS + int fullscreen; + int scaler; +#endif }; extern struct options opt;