RetroArch/input/linuxraw_input.h
Toad King 6c79d66e1b linuxraw input: gets input straight from stdin
WARNING: this mode uses a raw keyboard mode. if the emulator does not exit cleanly, you could be left at a terminal with no form of input. do not use this mode for testing.
2012-05-25 15:44:39 -04:00

14 lines
205 B
C

#include "../general.h"
#include "rarch_sdl_input.h"
#ifndef _LINUXRAW_INPUT_H
#define _LINUXRAW_INPUT_H
typedef struct linuxraw_input
{
sdl_input_t *sdl;
bool state[0x80];
} linuxraw_input_t;
#endif