fixed compiler warnings (after adding "-Wstrict-prototypes")
[rocksndiamonds.git] / src / game_sp / Display.h
index d80a07d9f5e01f35cf01c184d0d7f0f0c74714f3..12856385e0d438a6c2805caa0b3a3e18a85eeacb 100644 (file)
@@ -5,26 +5,20 @@
 #ifndef DISPLAY_H
 #define DISPLAY_H
 
-#include "vb_types.h"
-#include "vb_defs.h"
-#include "vb_vars.h"
-#include "vb_lib.h"
-
 #include "global.h"
 
 
 extern int ScreenScrollXPos, ScreenScrollYPos;
 
-extern int ShowPanel;
-extern int ExplosionShake;
+extern int ExplosionShake, ExplosionShakeMurphy;
 extern boolean NoDisplayFlag;
 
-extern long DisplayMinX, DisplayMaxX, DisplayWidth;
-extern long DisplayMinY, DisplayMaxY, DisplayHeight;
+extern int DisplayMinX, DisplayMaxX;
+extern int DisplayMinY, DisplayMaxY;
 
-extern void subDisplayLevel();
+extern void subDisplayLevel(void);
 extern void ScrollTo(int, int);
 extern void ScrollTowards(int, int);
-extern void SoftScrollTo(int, int, long, int);
+extern void SoftScrollTo(int, int, int, int);
 
 #endif /* DISPLAY_H */