Explorar el Código

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

Streetwalrus Einstein hace 10 años
padre
commit
5f0f65303a
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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)
 unsigned map_collide(unsigned x, unsigned y, const Map map)
 {
 {
+	(void) x;
+	(void) y;
+	(void) map;
 	return 0;
 	return 0;
 }
 }