fix sdl init video : mthuurne

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@187 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
tmator 2008-08-13 00:05:42 +00:00
parent 7b357c84df
commit bd3d9305b3
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ bool OpenGL_Create(SVideoInitialize &_VideoInitialize, int _iwidth, int _iheight
//setup ogl to use double buffering //setup ogl to use double buffering
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
screen = SDL_SetVideoMode(_twidth, _theight, 24, SDL_OPENGL|SDL_RESIZABLE); screen = SDL_SetVideoMode(_twidth, _theight, 0, videoFlags);
if (!screen) { if (!screen) {
//TODO : Display an error message //TODO : Display an error message
SDL_Quit(); SDL_Quit();