1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-08 15:19:50 +00:00

Remove old pre-SDL2 rumble code for Linux

SDL2 is now ubiquitous on linux, and there is no reason to keep this around
This commit is contained in:
fgenesis 2016-06-26 00:03:10 +02:00
parent a7c2d054a2
commit 7494529bd0
3 changed files with 1 additions and 142 deletions

View file

@ -33,17 +33,12 @@ public:
private:
bool inited;
unsigned buttonBitmask; // FIXME: this should go
SDL_Joystick *sdl_joy;
# ifdef BBGE_BUILD_SDL2
SDL_GameController *sdl_controller;
SDL_Haptic *sdl_haptic;
# endif
SDL_Joystick *sdl_joy;
#if defined(__LINUX__) && !defined(BBGE_BUILD_SDL2)
int eventfd;
short effectid;
#endif
};