diff --git a/docs/index.html b/docs/index.html
index 3944456f1..2bc00f9b3 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -337,7 +337,7 @@
General (required for all versions of Stella)
- - SDL version 2.0.3 or greater, latest version highly recommended
+ - SDL version 2.0.5 or greater, latest version highly recommended
- 15/16 bit color minimum; 24/32 bit color graphics card highly recommended
- Enough RAM for the OS + 256MB RAM for the emulation; 512MB+ highly recommended
- Joysticks or gamepads are highly recommended
diff --git a/src/common/SDL_lib.hxx b/src/common/SDL_lib.hxx
index 90be6ebce..324709d1a 100644
--- a/src/common/SDL_lib.hxx
+++ b/src/common/SDL_lib.hxx
@@ -59,6 +59,7 @@ static inline bool SDLOpenURL(const string& url)
#if SDL_VERSION_ATLEAST(2,0,14)
return SDL_OpenURL(url.c_str()) == 0;
#else
+ cerr << "OpenURL requires at least SDL 2.0.14\n";
return false;
#endif
}
diff --git a/src/common/Version.hxx b/src/common/Version.hxx
index 8026f84f2..b7aefa58e 100644
--- a/src/common/Version.hxx
+++ b/src/common/Version.hxx
@@ -19,6 +19,6 @@
#define VERSION_HXX
#define STELLA_VERSION "6.5.3"
-#define STELLA_BUILD "6719"
+#define STELLA_BUILD "6775"
#endif