Add comments

This commit is contained in:
twinaphex 2020-07-07 03:49:54 +02:00
parent 00518d3470
commit 5790f13798
4 changed files with 5 additions and 2 deletions

View File

@ -18,7 +18,7 @@
enum gamepad_pad_axes
{
AXIS_LEFT_ANALOG_X,
AXIS_LEFT_ANALOG_X = 0,
AXIS_LEFT_ANALOG_Y,
AXIS_RIGHT_ANALOG_X,
AXIS_RIGHT_ANALOG_Y,

View File

@ -18,6 +18,7 @@
#include "input_x11_common.h"
/* TODO/FIXME - static globals */
static bool x11_mouse_wu;
static bool x11_mouse_wd;
static bool x11_mouse_hwu;

View File

@ -25,6 +25,7 @@
#include "linux_common.h"
/* TODO/FIXME - static globals */
static struct termios oldTerm, newTerm;
static long oldKbmd = 0xffff;
static bool linux_stdin_claimed = false;

View File

@ -29,7 +29,8 @@
#include "keyboard_event_apple.h"
#if TARGET_OS_IPHONE
static bool small_keyboard_active;
/* TODO/FIXME - static globals */
static bool small_keyboard_active = false;
#define HIDKEY(X) X
#else