diff --git a/src/video_core/renderer_opengl/pica_to_gl.h b/src/video_core/renderer_opengl/pica_to_gl.h index 7733f05f2..4b436d931 100644 --- a/src/video_core/renderer_opengl/pica_to_gl.h +++ b/src/video_core/renderer_opengl/pica_to_gl.h @@ -103,9 +103,9 @@ inline GLenum BlendEquation(Pica::FramebufferRegs::BlendEquation equation) { // Range check table for input if (static_cast(equation) >= ARRAY_SIZE(blend_equation_table)) { - LOG_CRITICAL(Render_OpenGL, "Unknown blend equation %u", static_cast(equation)); - UNREACHABLE(); + LOG_ERROR(Render_OpenGL, "Unknown blend equation %u", static_cast(equation)); + // This return value is hwtested, not just a stub return GL_FUNC_ADD; }