Skip to content

Commit

Permalink
Fix a typo in glBlendEquation base mode setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinnegatamante committed Nov 10, 2021
1 parent b39f7c0 commit f98727d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SysVita/HLEGraphics/RendererModern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ void RendererModern::RestoreRenderStates()
glScissor(0,0, width, height);
glEnable(GL_SCISSOR_TEST);

glBlendEquation(GL_ADD);
glBlendEquation(GL_FUNC_ADD);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);

glDisable( GL_BLEND );
Expand Down

0 comments on commit f98727d

Please sign in to comment.