mirror of
https://github.com/libretro/RetroArch
synced 2025-02-25 12:41:18 +00:00
Comment out ununused inline functions for now
This commit is contained in:
parent
3c170fe079
commit
5fa4723a22
@ -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)
|
static inline bool get_bit(const uint8_t *buf, unsigned bit)
|
||||||
{
|
{
|
||||||
return buf[bit >> 3] & (1 << (bit & 7));
|
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);
|
buf[bit >> 3] |= 1 << (bit & 7);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool input_translate_coord_viewport(int mouse_x, int mouse_y,
|
bool input_translate_coord_viewport(int mouse_x, int mouse_y,
|
||||||
int16_t *res_x, int16_t *res_y, int16_t *res_screen_x,
|
int16_t *res_x, int16_t *res_y, int16_t *res_screen_x,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user