diff options
author | Lioncash <mathew1800@gmail.com> | 2015-05-22 19:48:06 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-05-22 19:49:12 -0400 |
commit | 23d5df9d9c77e405f03ea1c1616e27764c290728 (patch) | |
tree | 1f651364ebccde78ed33f72bcb1fa8bbb33b452b /src | |
parent | 932aeb333fc7035f181688f9ea468688bc5f780d (diff) |
gl_state: Fix a condition typo in Apply
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/gl_state.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.cpp b/src/video_core/renderer_opengl/gl_state.cpp index ca8a371e7..938edf1c2 100644 --- a/src/video_core/renderer_opengl/gl_state.cpp +++ b/src/video_core/renderer_opengl/gl_state.cpp @@ -120,7 +120,7 @@ const void OpenGLState::Apply() { // Textures for (unsigned texture_index = 0; texture_index < ARRAY_SIZE(texture_units); ++texture_index) { - if (texture_units[texture_index].enabled_2d != texture_units[texture_index].enabled_2d) { + if (texture_units[texture_index].enabled_2d != cur_state.texture_units[texture_index].enabled_2d) { glActiveTexture(GL_TEXTURE0 + texture_index); if (texture_units[texture_index].enabled_2d) { |