Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
This line in SWRenderer has been wrong ever since the beginning.
  • Loading branch information
Sonicadvance1 committed Dec 30, 2012
1 parent b291151 commit 49ed752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Plugins/Plugin_VideoSoftware/Src/SWRenderer.cpp
Expand Up @@ -148,7 +148,7 @@ void SWRenderer::DrawTexture(u8 *texture, int width, int height)
glTexParameteri(TEX2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);

GLfloat u_max = (GLfloat)width;
GLfloat v_max = (GLfloat)glHeight;
GLfloat v_max = (GLfloat)height;

static const GLfloat verts[4][2] = {
{ -1, -1}, // Left top
Expand Down

0 comments on commit 49ed752

Please sign in to comment.