aboutsummaryrefslogtreecommitdiff
path: root/src/mouse/sdl-1.2
Commit message (Collapse)AuthorAgeFilesLines
* Use find_package for SDL librariesXavier Del Campo Romero2022-07-231-1/+1
| | | | | | | | | | CMake already distributes FindSDL*.cmake files for SDL and SDL_mixer, which support custom prefixes via environment variables, removing the need for ad-hoc logic in Win9x builds. Also, according to FindSDL.cmake, #include <SDL.h> is the preferred way for portability reasons, instead of #include <SDL/SDL.h>, which is the option that has been used so far.
* Deprecate memset(3) over C99 compound literals for zero-initXavier Del Campo Romero2022-06-261-1/+1
| | | | | Using memset(3) does not ensure pointers are assigned to NULL for all platforms.
* Implement touch controlsXavier Del Campo Romero2022-03-311-0/+4
|
* sdl-1.2/mouse.c: fix right click eventsXavier Del Campo Romero2022-03-301-1/+8
|
* Add support for keyboard and mouseXavier Del Campo Romero2022-03-301-0/+80