X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=src%2Fcfgopt.h;h=2bbaffb8e92439a46f6de60267a29afe0a7af70a;hp=68a8e9d3aed3ed6cd5e50dff153bc7abbf291f8b;hb=b2c24e9d5b637bb78d18a377d9957c07d0759030;hpb=6c5e65928b425dd6a7f5192841e1d4ef9d90789a diff --git a/src/cfgopt.h b/src/cfgopt.h index 68a8e9d..2bbaffb 100644 --- a/src/cfgopt.h +++ b/src/cfgopt.h @@ -1,10 +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;