Final updates for 6.5.3 release.

Added debugging note when not using SDL 2.0.14, so we know that OpenURL won't work.
This commit is contained in:
Stephen Anthony 2021-04-20 12:33:11 -02:30
parent 4859c85586
commit e75d028c79
3 changed files with 3 additions and 2 deletions

View File

@ -337,7 +337,7 @@
<p>
<h3><b><u>General</u> (required for all versions of Stella)</b></h3>
<ul>
<li>SDL version 2.0.3 or greater, latest version highly recommended</li>
<li>SDL version 2.0.5 or greater, latest version highly recommended</li>
<li>15/16 bit color minimum; 24/32 bit color graphics card highly recommended</li>
<li>Enough RAM for the OS + 256MB RAM for the emulation; 512MB+ highly recommended</li>
<li>Joysticks or gamepads are highly recommended</li>

View File

@ -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
}

View File

@ -19,6 +19,6 @@
#define VERSION_HXX
#define STELLA_VERSION "6.5.3"
#define STELLA_BUILD "6719"
#define STELLA_BUILD "6775"
#endif