Update of /cvsroot/vba/VisualBoyAdvance/src/win32
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15209/src/win32
Modified Files:
MainWndFile.cpp
Log Message:
display->resize will now be called when toggling the menu on/off
Index: MainWndFile.cpp
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MainWndFile.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** MainWndFile.cpp 4 Aug 2006 11:24:24 -0000 1.19
--- MainWndFile.cpp 5 Aug 2006 17:29:02 -0000 1.20
***************
*** 713,716 ****
--- 713,718 ----
theApp.adjustDestRect();
+ if(theApp.display)
+ theApp.display->resize(theApp.dest.right-theApp.dest.left, theApp.dest.bottom-theApp.dest.top);
}
|