changed comments from old to new style (one-line comments only)
[rocksndiamonds.git] / src / game_sp / DDScrollBuffer.h
index efff1306fc26892ed6c9a28671ea594520116649..8dd904e2f7ff4af5805696ab8d058b09956217e7 100644 (file)
 extern int mScrollX, mScrollY;
 extern int mScrollX_last, mScrollY_last;
 
-#if 1
-extern boolean redraw[2 + MAX_PLAYFIELD_WIDTH + 2][2 + MAX_PLAYFIELD_HEIGHT + 2];
-#else
-extern boolean redraw[MAX_BUF_XSIZE][MAX_BUF_YSIZE];
-#endif
 
-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, int TimeMS, int FPS);
-
-#endif /* DDSCROLLBUFFER_H */
+#endif // DDSCROLLBUFFER_H