From 40a5fbe605d06c2228dc72fd75f1d79bbc4a0ed1 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Thu, 28 Jun 2018 16:35:49 +1000 Subject: [PATCH] Update to v106r44 public beta release: byuu says (in the public announcement): I'm releasing a beta version of bsnes, for the purpose of gathering feedback and ensuring that the first official release of bsnes is as solid as possible. With the exception of dynamic rate control for automatic audio/video sync, and no pack-in video shaders or cheat code database, it is mostly feature complete. However, please do not form a lasting opinion of bsnes based on this beta. --- hiro/windows/widget/canvas.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hiro/windows/widget/canvas.cpp b/hiro/windows/widget/canvas.cpp index 51138720..3b6ab8ef 100644 --- a/hiro/windows/widget/canvas.cpp +++ b/hiro/windows/widget/canvas.cpp @@ -18,13 +18,13 @@ static auto CALLBACK Canvas_windowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARA } if(msg == WM_ERASEBKGND) { - //background is erased during WM_PAINT to prevent flickering + if(auto self = canvas->self()) self->_paint(); return true; } if(msg == WM_PAINT) { if(auto self = canvas->self()) self->_paint(); - return true; + return false; } if(msg == WM_MOUSEMOVE) {