mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
This line in SWRenderer has been wrong ever since the beginning.
This commit is contained in:
parent
b2911516de
commit
49ed752126
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue