Comment out ununused inline functions for now

This commit is contained in:
twinaphex 2014-10-05 17:02:30 +02:00
parent 3c170fe079
commit 5fa4723a22

View File

@ -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,