mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-08 08:23:54 +02:00
Fix --opengl-render option. Please NEVER use this option though
This commit is contained in:
parent
63ac47a270
commit
ce55c8e58b
src
@ -187,13 +187,13 @@ std::string ClipboardPull()
|
||||
return clipboardText;
|
||||
}
|
||||
|
||||
int mousex = 0, mousey = 0;
|
||||
#ifdef OGLI
|
||||
void blit()
|
||||
{
|
||||
SDL_GL_SwapBuffers();
|
||||
}
|
||||
#else
|
||||
int mousex = 0, mousey = 0;
|
||||
void DrawPixel(pixel * vid, pixel color, int x, int y)
|
||||
{
|
||||
if (x >= 0 && x < WINDOWW && y >= 0 && y < WINDOWH)
|
||||
|
@ -1012,8 +1012,8 @@ void Renderer::DrawSigns()
|
||||
x += dx;
|
||||
y += dy;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
#ifdef OGLR
|
||||
glTranslated(0, -MENUSIZE, 0);
|
||||
|
@ -214,8 +214,8 @@ void SignWindow::DoDraw()
|
||||
x+=dx;
|
||||
y+=dy;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
if(!signMoving)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user