You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
511 B
29 lines
511 B
#pragma once |
|
|
|
#ifdef USE_SDL3 |
|
#include <SDL3/SDL_events.h> |
|
#else |
|
#include <SDL.h> |
|
#endif |
|
|
|
#include "controls/controller.h" |
|
#include "controls/controller_motion.h" |
|
|
|
namespace devilution { |
|
|
|
inline bool PollEvent(SDL_Event *event) |
|
{ |
|
#ifdef USE_SDL3 |
|
const bool result = SDL_PollEvent(event); |
|
#else |
|
const bool result = SDL_PollEvent(event) != 0; |
|
#endif |
|
if (result) { |
|
UnlockControllerState(*event); |
|
ProcessControllerMotion(*event); |
|
} |
|
|
|
return result; |
|
} |
|
|
|
} // namespace devilution
|
|
|