home · contact · privacy
Server: Remove unneeded yx_uint8_cmp() function.
[plomrogue] / src / server / yx_uint8.c
index c6a816dbc31ed355c4dc4906b4752c52ed6a6b72..18355a21af5bb3cfdad4c3be432179c11e1461fa 100644 (file)
@@ -46,17 +46,6 @@ static void mv_yx_in_hex_dir(char d, struct yx_uint8 * yx)
 
 
 
-extern uint8_t yx_uint8_cmp(struct yx_uint8 * a, struct yx_uint8 * b)
-{
-    if (a->y == b->y && a->x == b->x)
-    {
-        return 1;
-    }
-    return 0;
-}
-
-
-
 extern uint8_t mv_yx_in_dir_wrap(char d, struct yx_uint8 * yx, uint8_t unwrap)
 {
     static int8_t wrap_west_east   = 0;