Bump effect added. This is unfinished, nothing to see here yet, just commiting initia...
[dosdemo] / src / screen.c
index c91cb82..4e26db4 100644 (file)
@@ -10,6 +10,7 @@ struct screen *fract_screen(void);
 struct screen *grise_screen(void);
 struct screen *polytest_screen(void);
 struct screen *plasma_screen(void);
+struct screen *bump_screen(void);
 
 #define NUM_SCR 32
 static struct screen *scr[NUM_SCR];
@@ -37,25 +38,17 @@ int scr_init(void)
        if (!(scr[idx++] = plasma_screen())) {
                return -1;
        }
+       if (!(scr[idx++] = bump_screen())) {
+               return -1;
+       }
        num_screens = idx;
 
        assert(num_screens <= NUM_SCR);
 
        for(i=0; i<num_screens; i++) {
-               int r;
-               r = scr[i]->init();
-               if(r == -1) {
+               if(scr[i]->init() == -1) {
                        return -1;
                }
-
-               /* Make the effect run first if it returns "CAFE" from ins init() */
-               if (r == 0xCAFE) {
-                       struct screen *tmp;
-                       tmp = scr[i];
-                       scr[i] = scr[0];
-                       scr[0] = tmp;
-                       printf("*** Screen %s displayed out of order ***\n", scr[0]->name);
-               }
        }
        return 0;
 }