- set anti-alias setting so it works if enabled

This commit is contained in:
Mark Vejvoda 2010-12-17 02:53:52 +00:00
parent 0c325baeb0
commit b148507411

View File

@ -370,7 +370,7 @@ void Window::setupGraphicsScreen(int depthBits, int stencilBits, bool hardware_a
if(fullscreen_anti_aliasing == true) { if(fullscreen_anti_aliasing == true) {
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS,1); SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS,1);
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 16); SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 2);
} }
if(hardware_acceleration == true) { if(hardware_acceleration == true) {
SDL_GL_SetAttribute(SDL_GL_ACCELERATED_VISUAL, 1); SDL_GL_SetAttribute(SDL_GL_ACCELERATED_VISUAL, 1);