- fixed bad check for gl pipeline type.

This commit is contained in:
Christoph Oelckers 2021-08-20 08:06:50 +02:00
parent 2096fefcee
commit 19c8eb1e33
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ void OpenGLFrameBuffer::InitializeState()
gl_LoadExtensions();
mPipelineNbr = clamp(*gl_pipeline_depth, 1, HW_MAX_PIPELINE_BUFFERS);
mPipelineType = gl_pipeline_depth < 1;
mPipelineType = gl_pipeline_depth > 0;
// Move some state to the framebuffer object for easier access.
hwcaps = gl.flags;