From 5fa4723a223482841d2f442a67fe2609b341af72 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 5 Oct 2014 17:02:30 +0200 Subject: [PATCH] Comment out ununused inline functions for now --- input/input_common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/input/input_common.h b/input/input_common.h index e206b301aa..9fbbe45285 100644 --- a/input/input_common.h +++ b/input/input_common.h @@ -55,6 +55,7 @@ static inline void input_conv_analog_id_to_bind_id(unsigned index, unsigned id, } } +#if 0 static inline bool get_bit(const uint8_t *buf, unsigned bit) { return buf[bit >> 3] & (1 << (bit & 7)); @@ -69,6 +70,7 @@ static inline void set_bit(uint8_t *buf, unsigned bit) { buf[bit >> 3] |= 1 << (bit & 7); } +#endif bool input_translate_coord_viewport(int mouse_x, int mouse_y, int16_t *res_x, int16_t *res_y, int16_t *res_screen_x,