changed comments from old to new style (one-line comments only)
[rocksndiamonds.git] / src / game_sp / DDScrollBuffer.h
index 78c6e563ad90aaf9549d05e85cb56eded2d8b1a2..8dd904e2f7ff4af5805696ab8d058b09956217e7 100644 (file)
@@ -8,20 +8,16 @@
 #include "global.h"
 
 
-extern long mScrollX, mScrollY;
-extern long mScrollX_last, mScrollY_last;
+extern int mScrollX, mScrollY;
+extern int mScrollX_last, mScrollY_last;
 
-extern boolean redraw[MAX_BUF_XSIZE][MAX_BUF_YSIZE];
 
-extern int TEST_flag;
+void InitScrollPlayfield(void);
+void UpdatePlayfield(boolean);
+void RestorePlayfield(void);
 
+void DDScrollBuffer_ScrollTo(int X, int Y);
+void DDScrollBuffer_ScrollTowards(int X, int Y, double Step);
+void DDScrollBuffer_SoftScrollTo(int X, int Y, int TimeMS, int FPS);
 
-extern void InitScrollPlayfield();
-extern void UpdatePlayfield();
-extern void RestorePlayfield();
-
-extern void DDScrollBuffer_ScrollTo(int X, int Y);
-extern void DDScrollBuffer_ScrollTowards(int X, int Y, double Step);
-extern void DDScrollBuffer_SoftScrollTo(int X, int Y, long TimeMS, int FPS);
-
-#endif /* DDSCROLLBUFFER_H */
+#endif // DDSCROLLBUFFER_H