diff --git a/src/video/wincommon/SDL_wingl.c b/src/video/wincommon/SDL_wingl.c index 20911aee1..186cba4dc 100644 --- a/src/video/wincommon/SDL_wingl.c +++ b/src/video/wincommon/SDL_wingl.c @@ -446,6 +446,12 @@ int WIN_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value) *value = 0; } break; + case SDL_GL_MULTISAMPLEBUFFERS: + *value = 0; + break; + case SDL_GL_MULTISAMPLESAMPLES: + *value = 1; + break; default: retval = -1; break;