dropping SDL for the cross-platform version almost done
[dosdemo] / src / cfgopt.h
index 5172d20..2bbaffb 100644 (file)
@@ -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;