Fix I_OpenURL wunused on old SDL

This commit is contained in:
AJ Martinez 2024-05-19 20:03:37 -07:00
parent d7661e50cf
commit 0bc91fe1a0

View file

@ -1027,6 +1027,7 @@ void I_OpenURL(const char *data)
#if (SDL_VERSION_ATLEAST(2, 0, 14))
SDL_OpenURL(data);
#else
(void)data;
return;
#endif
}