1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 15:39:02 +00:00

Don't advertise an alpha channel in GraphicsContext::traits (Bug #2677)

This commit is contained in:
scrawl 2015-06-14 16:32:34 +02:00
parent cad18969e3
commit 9fc2c2e8ee

View File

@ -393,7 +393,7 @@ void OMW::Engine::createWindow(Settings::Manager& settings)
traits->red = 8;
traits->green = 8;
traits->blue = 8;
traits->alpha = 8;
traits->alpha = 0; // set to 0 to stop ScreenCaptureHandler reading the alpha channel
traits->depth = 24;
traits->stencil = 8;
traits->vsync = vsync;