mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 15:45:38 +00:00
Fixed a compiler error and a compiler warning
This commit is contained in:
parent
e91512a519
commit
2fd58b3052
|
@ -22,8 +22,11 @@
|
||||||
#include <pugixml.hpp>
|
#include <pugixml.hpp>
|
||||||
|
|
||||||
#define KEYBOARD_GUID_STRING "-1"
|
#define KEYBOARD_GUID_STRING "-1"
|
||||||
#define TOUCH_GUID_STRING "-2"
|
#define CEC_GUID_STRING "-2"
|
||||||
#define CEC_GUID_STRING "-3"
|
|
||||||
|
#if defined(__ANDROID__)
|
||||||
|
#define TOUCH_GUID_STRING "-3"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,10 @@
|
||||||
#define ES_CORE_INPUT_MANAGER_H
|
#define ES_CORE_INPUT_MANAGER_H
|
||||||
|
|
||||||
#include "CECInput.h"
|
#include "CECInput.h"
|
||||||
|
|
||||||
|
#if defined(__ANDROID__)
|
||||||
#include "InputOverlay.h"
|
#include "InputOverlay.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <SDL2/SDL.h>
|
#include <SDL2/SDL.h>
|
||||||
#include <SDL2/SDL_joystick.h>
|
#include <SDL2/SDL_joystick.h>
|
||||||
|
|
Loading…
Reference in a new issue