mirror of
https://github.com/libretro/RACE.git
synced 2024-11-23 08:59:49 +00:00
7 lines
167 B
C
7 lines
167 B
C
/* input.c: implementation of the input class. */
|
|
|
|
#include "input.h"
|
|
|
|
/* address where the state of the input device(s) is stored */
|
|
unsigned char ngpInputState = 0;
|