diff options
Diffstat (limited to 'backends/graphics/opengl')
-rw-r--r-- | backends/graphics/opengl/opengl-graphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.cpp b/backends/graphics/opengl/opengl-graphics.cpp index 6963c4c1db..dfb020c256 100644 --- a/backends/graphics/opengl/opengl-graphics.cpp +++ b/backends/graphics/opengl/opengl-graphics.cpp @@ -27,6 +27,7 @@ #include "backends/graphics/opengl/opengl-graphics.h" #include "backends/graphics/opengl/glerrorcheck.h" +#include "common/config-manager.h" #include "common/file.h" #include "common/mutex.h" #include "common/translation.h" @@ -55,7 +56,7 @@ OpenGLGraphicsManager::OpenGLGraphicsManager() _videoMode.mode = OpenGL::GFX_DOUBLESIZE; _videoMode.scaleFactor = 2; - _videoMode.fullscreen = false; + _videoMode.fullscreen = ConfMan.getBool("fullscreen"); _videoMode.antialiasing = false; _videoMode.aspectRatioCorrection = 0; |