ソースを参照

Silence a warning about unused arguments
The function isn't implemented yet

Streetwalrus Einstein 10 年 前
コミット
5f0f65303a
共有1 個のファイルを変更した3 個の追加0 個の削除を含む
  1. 3 0
      src/map.c

+ 3 - 0
src/map.c

@@ -35,6 +35,9 @@ void map_draw(unsigned x, unsigned y, const Map map)
 
 unsigned map_collide(unsigned x, unsigned y, const Map map)
 {
+	(void) x;
+	(void) y;
+	(void) map;
 	return 0;
 }