declaration cleanup
[netris.git] / board.c
diff --git a/board.c b/board.c
index 87073b9a7b5348e14ebe9ed20b94ba96d70fdd87..cd1bc2834c7c0bb717474f869def09ab4a34898f 100644 (file)
--- a/board.c
+++ b/board.c
@@ -149,7 +149,7 @@ unsigned char GetBlock(int scr, int y, int x)
                return board[scr][y][x];
 }
 
-void SetBlock(int scr, int y, int x, unsigned char type)
+static void SetBlock(int scr, int y, int x, unsigned char type)
 {
        if (y >= 0 && y < Players[scr].boardHeight
         && x >= 0 && x < Players[scr].boardWidth) {
@@ -381,11 +381,6 @@ int ClearFullLines(int scr)
        return linescleared;
 }
 
-void FreezePiece(int scr)
-{
-       // remove me! :)
-}
-
 void InsertJunk(int scr, int color, int count, int column)
 { //add <count> junklines with hole at <column> to <scr> by team <color>
        int y, x;