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()
|
||||
{
|
||||
#if defined(SDL_SUPPORT)
|
||||
#if SDL_VERSION_ATLEAST(2, 0, 14)
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
return SDLSupportsURL();
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
|
@ -197,11 +193,7 @@ class MediaFactory
|
|||
static bool openURL(const string& url)
|
||||
{
|
||||
#if defined(SDL_SUPPORT)
|
||||
#if SDL_VERSION_ATLEAST(2, 0, 14)
|
||||
return SDLOpenURL(url);
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
return SDLOpenURL(url);
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
|
|
|
@ -60,6 +60,11 @@ static inline string SDLVersion()
|
|||
return buf.str();
|
||||
}
|
||||
|
||||
static inline bool SDLSupportsURL()
|
||||
{
|
||||
return static_cast<bool>(SDL_VERSION_ATLEAST(2,0,14));
|
||||
}
|
||||
|
||||
static inline bool SDLOpenURL(const string& url)
|
||||
{
|
||||
#if SDL_VERSION_ATLEAST(2,0,14)
|
||||
|
|
Loading…
Reference in New Issue