X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fcfgopt.h;h=2bbaffb8e92439a46f6de60267a29afe0a7af70a;hb=650644eccabcdceb974c17d5fd19c0546eb753d3;hp=0c302a6a3c4b0970ca8b793e589bea320e8f7901;hpb=c912e59b898fe1ac461a1468e4a2e1937de286d7;p=dosdemo diff --git a/src/cfgopt.h b/src/cfgopt.h index 0c302a6..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 sball; + int mouse, sball; int vsync; int dbginfo; +#ifndef MSDOS + int fullscreen; + int scaler; +#endif }; extern struct options opt;