diff options
| -rw-r--r-- | src/video_core/renderer_opengl/gl_state.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_state.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.cpp b/src/video_core/renderer_opengl/gl_state.cpp index 938edf1c2..1afa58c99 100644 --- a/src/video_core/renderer_opengl/gl_state.cpp +++ b/src/video_core/renderer_opengl/gl_state.cpp | |||
| @@ -43,7 +43,7 @@ OpenGLState::OpenGLState() { | |||
| 43 | draw.shader_program = 0; | 43 | draw.shader_program = 0; |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | const void OpenGLState::Apply() { | 46 | void OpenGLState::Apply() { |
| 47 | // Culling | 47 | // Culling |
| 48 | if (cull.enabled != cur_state.cull.enabled) { | 48 | if (cull.enabled != cur_state.cull.enabled) { |
| 49 | if (cull.enabled) { | 49 | if (cull.enabled) { |
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h index a56d31371..281b7cad5 100644 --- a/src/video_core/renderer_opengl/gl_state.h +++ b/src/video_core/renderer_opengl/gl_state.h | |||
| @@ -63,7 +63,7 @@ public: | |||
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | /// Apply this state as the current OpenGL state | 65 | /// Apply this state as the current OpenGL state |
| 66 | const void Apply(); | 66 | void Apply(); |
| 67 | 67 | ||
| 68 | private: | 68 | private: |
| 69 | static OpenGLState cur_state; | 69 | static OpenGLState cur_state; |