1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-15 01:24:45 +02:00

compatible with older sdl

This commit is contained in:
Michael
2023-08-26 22:30:02 +02:00
committed by GitHub
parent cde22b3755
commit a354a7f696
4 changed files with 5 additions and 5 deletions

View File

@ -254,9 +254,9 @@ void InputHandler::hapticFeedback()
fingerHandler->hapticFeedback();
}
uint64_t InputHandler::getTicks()
uint32_t InputHandler::getTicks()
{
return SDL_GetTicks64();
return SDL_GetTicks();
}
bool InputHandler::hasTouchInputDevice() const