Cleanup: use the system-handle arg for GHOST_SetMultitouchGestures

There was an unused argument warning, quiet by using the argument.
This commit is contained in:
Campbell Barton
2022-09-27 07:03:58 +10:00
parent 84ddb8b3cc
commit cd7e9a1ad5

View File

@@ -745,7 +745,7 @@ GHOST_TSuccess GHOST_InvalidateWindow(GHOST_WindowHandle windowhandle)
void GHOST_SetMultitouchGestures(GHOST_SystemHandle systemhandle, const bool use)
{
GHOST_ISystem *system = GHOST_ISystem::getSystem();
GHOST_ISystem *system = (GHOST_ISystem *)systemhandle;
return system->setMultitouchGestures(use);
}