mirror of https://github.com/stella-emu/stella.git
Refactor a little; SDL-specific header stuff should stay in SDL_lib.hxx.
This commit is contained in:
parent
444dfdc4a9
commit
4557099e5d
|
@ -184,11 +184,7 @@ class MediaFactory
|
||||||
static bool supportsURL()
|
static bool supportsURL()
|
||||||
{
|
{
|
||||||
#if defined(SDL_SUPPORT)
|
#if defined(SDL_SUPPORT)
|
||||||
#if SDL_VERSION_ATLEAST(2, 0, 14)
|
return SDLSupportsURL();
|
||||||
return true;
|
|
||||||
#else
|
|
||||||
return false;
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
@ -197,11 +193,7 @@ class MediaFactory
|
||||||
static bool openURL(const string& url)
|
static bool openURL(const string& url)
|
||||||
{
|
{
|
||||||
#if defined(SDL_SUPPORT)
|
#if defined(SDL_SUPPORT)
|
||||||
#if SDL_VERSION_ATLEAST(2, 0, 14)
|
return SDLOpenURL(url);
|
||||||
return SDLOpenURL(url);
|
|
||||||
#else
|
|
||||||
return false;
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -60,6 +60,11 @@ static inline string SDLVersion()
|
||||||
return buf.str();
|
return buf.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline bool SDLSupportsURL()
|
||||||
|
{
|
||||||
|
return static_cast<bool>(SDL_VERSION_ATLEAST(2,0,14));
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool SDLOpenURL(const string& url)
|
static inline bool SDLOpenURL(const string& url)
|
||||||
{
|
{
|
||||||
#if SDL_VERSION_ATLEAST(2,0,14)
|
#if SDL_VERSION_ATLEAST(2,0,14)
|
||||||
|
|
Loading…
Reference in New Issue