1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

vcmi: suppress warning on IOS

Let CI passes on develop.
This commit is contained in:
Konstantin
2023-01-29 21:30:37 +03:00
parent 57ee9a9bf3
commit 080d4b13dd

View File

@@ -474,7 +474,9 @@ void CGuiHandler::handleCurrentEvent( SDL_Event & current )
} }
else if(current.type == SDL_FINGERUP) else if(current.type == SDL_FINGERUP)
{ {
#ifndef VCMI_IOS
auto fingerCount = SDL_GetNumTouchFingers(current.tfinger.touchId); auto fingerCount = SDL_GetNumTouchFingers(current.tfinger.touchId);
#endif //VCMI_IOS
if(isPointerRelativeMode) if(isPointerRelativeMode)
{ {