From dfada113d35ebea131a13fa629512dc8852b0ad5 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Fri, 15 Dec 2017 13:24:36 +0700 Subject: [PATCH] Do not change current draw buffer after OSD drawing. Fixed mupen64plus messages displayed upside-down. --- src/GraphicsDrawer.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/GraphicsDrawer.cpp b/src/GraphicsDrawer.cpp index 6fc33ef2..3312a270 100644 --- a/src/GraphicsDrawer.cpp +++ b/src/GraphicsDrawer.cpp @@ -1439,8 +1439,6 @@ void GraphicsDrawer::drawOSD() for (const std::string & m : m_osdMessages) { _drawOSD(m.c_str(), x, y); } - - frameBufferList().setCurrentDrawBuffer(); } void GraphicsDrawer::showMessage(std::string _message, Milliseconds _interval)