Skip to content
Snippets Groups Projects
Commit 0bc91fe1 authored by AJ Martinez's avatar AJ Martinez
Browse files

Fix I_OpenURL wunused on old SDL

parent d7661e50
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment