From: Sébastien G. <kx...@us...> - 2004-09-15 22:07:53
|
Update of /cvsroot/vba/VisualBoyAdvance/src/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26888 Modified Files: MainWnd.cpp Log Message: Fixed a minor repainting bug that occurred when application focus changed. Index: MainWnd.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MainWnd.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MainWnd.cpp 13 May 2004 15:06:50 -0000 1.12 --- MainWnd.cpp 15 Sep 2004 22:07:41 -0000 1.13 *************** *** 1099,1103 **** --- 1099,1108 ---- if(theApp.paused && emulating) + { + theApp.painting = true; systemDrawScreen(); + theApp.painting = false; + theApp.renderedFrames--; + } } |