Просмотр исходного кода

gl_rasterizer: Correct assertion condition in SyncLogicOpState()

Previously the assert would always be hit, since it was the equivalent
of: array == nullptr, which is never true.
Lioncash 8 лет назад
Родитель
Сommit
8fd9eb71b4
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      src/video_core/renderer_opengl/gl_rasterizer.cpp

+ 2 - 1
src/video_core/renderer_opengl/gl_rasterizer.cpp

@@ -929,7 +929,8 @@ void RasterizerOpenGL::SyncLogicOpState() {
     if (!state.logic_op.enabled)
     if (!state.logic_op.enabled)
         return;
         return;
 
 
-    ASSERT_MSG(regs.blend.enable == 0, "Blending and logic op can't be enabled at the same time.");
+    ASSERT_MSG(regs.blend.enable[0] == 0,
+               "Blending and logic op can't be enabled at the same time.");
 
 
     state.logic_op.operation = MaxwellToGL::LogicOp(regs.logic_op.operation);
     state.logic_op.operation = MaxwellToGL::LogicOp(regs.logic_op.operation);
 }
 }