fixed opengl backend

This commit is contained in:
Pawel Kolodziejski 2009-05-07 22:33:47 +00:00
parent 5c936971cd
commit 23c870402a

View file

@ -814,6 +814,9 @@ void OSystem_SDL::setWindowCaption(const char *caption) {
bool OSystem_SDL::hasFeature(Feature f) {
return
(f == kFeatureFullscreenMode) ||
#ifdef USE_OPENGL
(f == kFeatureOpenGL) ||
#endif
(f == kFeatureIconifyWindow);
}