[client] egl: typo fix in info message

"Multsampling" to "Multisampling"
This commit is contained in:
feltcat 2020-04-23 11:51:34 +01:00 committed by Geoffrey McRae
parent 243efcd51a
commit e7f088ef52

View File

@ -198,7 +198,7 @@ bool egl_initialize(void * opaque, Uint32 * sdlFlags)
if (maxSamples > 4)
maxSamples = 4;
DEBUG_INFO("Multsampling enabled, max samples: %d", maxSamples);
DEBUG_INFO("Multisampling enabled, max samples: %d", maxSamples);
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1);
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, maxSamples);
}