mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-03 17:01:17 +00:00
Merge pull request #1190 from efliks/fix-build-failed-missing-limits
Fix missing limits header in SDL2 and SDL3 input modules
This commit is contained in:
commit
27c412055e
2 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "header/input.h"
|
||||
#include "../header/keyboard.h"
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <SDL3/SDL.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "SDL3/SDL_gamepad.h"
|
||||
#include "SDL3/SDL_properties.h"
|
||||
|
|
Loading…
Reference in a new issue