1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Do not change current draw buffer after OSD drawing.

Fixed mupen64plus messages displayed upside-down.
This commit is contained in:
Sergey Lipskiy 2017-12-15 13:24:36 +07:00
parent 4d59d3ef28
commit dfada113d3

View File

@ -1439,8 +1439,6 @@ void GraphicsDrawer::drawOSD()
for (const std::string & m : m_osdMessages) { for (const std::string & m : m_osdMessages) {
_drawOSD(m.c_str(), x, y); _drawOSD(m.c_str(), x, y);
} }
frameBufferList().setCurrentDrawBuffer();
} }
void GraphicsDrawer::showMessage(std::string _message, Milliseconds _interval) void GraphicsDrawer::showMessage(std::string _message, Milliseconds _interval)