This commit is contained in:
twinaphex 2017-01-11 13:18:24 +01:00
parent 5875562dce
commit c1932ff8ff
2 changed files with 3 additions and 3 deletions

View File

@ -87,6 +87,9 @@
#define DEFAULT_EXT ""
#endif
#define runloop_cmd_triggered(trigger_input, id) (BIT64_GET(trigger_input, id))
#define runloop_cmd_pressed(old_input, id) (BIT64_GET(old_input, id))
enum runloop_state
{
RUNLOOP_STATE_NONE = 0,

View File

@ -23,10 +23,7 @@
#include <boolean.h>
#include <retro_common_api.h>
#define runloop_cmd_triggered(trigger_input, id) (BIT64_GET(trigger_input, id))
#define runloop_cmd_press(current_input, id) (BIT64_GET(current_input, id))
#define runloop_cmd_pressed(old_input, id) (BIT64_GET(old_input, id))
RETRO_BEGIN_DECLS