diff --git a/src/sdl/i_system.cpp b/src/sdl/i_system.cpp
index 2f1027139279246c0ab2d9cc0d14ba3cb2fceb03..34477524db74b05e6fd1c3c163f0a65f209bb992 100644
--- a/src/sdl/i_system.cpp
+++ b/src/sdl/i_system.cpp
@@ -1024,7 +1024,11 @@ boolean I_HasOpenURL()
 
 void I_OpenURL(const char *data)
 {
-	SDL_OpenURL(data);
+	#if (SDL_VERSION_ATLEAST(2, 0, 14))
+		SDL_OpenURL(data);
+	#else
+		return;
+	#endif
 }
 
 //