diff options
-rw-r--r-- | lib/glbase.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/glbase.cc b/lib/glbase.cc index 3cdea12..8800f47 100644 --- a/lib/glbase.cc +++ b/lib/glbase.cc @@ -25,7 +25,7 @@ int mogltk::glbase::setup(int w, int h, int flags) throw(GeneralException) { throw GeneralException(String("Couldn't initialise Video SubSystem: ") + SDL_GetError()); } - if (!(surface = SDL_SetVideoMode(width, height, 0, flags | SDL_OPENGL | SDL_FULLSCREEN))) { + if (!(surface = SDL_SetVideoMode(width, height, 0, flags | SDL_OPENGL))) { // if (!(surface = SDL_SetVideoMode(1024, 768, 0, flags | SDL_OPENGL))) { throw GeneralException(String("Couldn't set GL mode: ") + SDL_GetError()); } |