platform fixes

* fix black cursor on win32
* fix front buffer refresh on some x11 platforms
* fix outfit framebuffer glitch
* display entergame by default
* change some icons
This commit is contained in:
Eduardo Bart
2012-04-05 09:18:25 -03:00
parent f1fda8050a
commit 49727c573f
7 changed files with 11 additions and 28 deletions

View File

@@ -143,10 +143,10 @@ void Painter::setClipRect(const Rect& clipRect)
if(clipRect.isValid()) {
glEnable(GL_SCISSOR_TEST);
glScissor(clipRect.left(), g_graphics.getViewportSize().height() - clipRect.bottom() - 1, clipRect.width(), clipRect.height());
m_clipRect = clipRect;
} else {
glDisable(GL_SCISSOR_TEST);
}
m_clipRect = clipRect;
}
void Painter::saveAndResetState()