mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
6c79d66e1b
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.
14 lines
205 B
C
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
|