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:
Yamagi 2025-03-15 09:48:44 +01:00 committed by GitHub
commit 27c412055e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -35,6 +35,7 @@
*/
#include <SDL2/SDL.h>
#include <limits.h>
#include "header/input.h"
#include "../header/keyboard.h"

View file

@ -35,6 +35,7 @@
*/
#include <SDL3/SDL.h>
#include <limits.h>
#include "SDL3/SDL_gamepad.h"
#include "SDL3/SDL_properties.h"