engine: platform: android: call SDL_OpenURL only if XASH_SDL was defined during build. Remove version check, as Android always builds with latest SDL version.

This commit is contained in:
Alibek Omarov
2025-07-30 23:33:08 +05:00
parent 613768c3f9
commit cb4540a877

View File

@@ -133,7 +133,7 @@ Android_ShellExecute
*/
void Platform_ShellExecute( const char *path, const char *parms )
{
#if SDL_VERSION_ATLEAST( 2, 0, 14 )
#if XASH_SDL
SDL_OpenURL( path );
#endif
#endif // XASH_SDL
}