X-Git-Url: http://git.shiar.nl/netris.git/blobdiff_plain/f8a5ad3034da8bec75b68d1590c7d1d3943a18a7..406e72f6bc3be827e1202d817677e8af093231dc:/board.c diff --git a/board.c b/board.c index 87073b9..cd1bc28 100644 --- 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 junklines with hole at to by team int y, x;