Update of /cvsroot/vba/VisualBoyAdvance/src/win32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27695/src/win32
Modified Files:
MainWnd.cpp MainWndOptions.cpp
Log Message:
Disable remove intros option (too many problems with it)
Index: MainWnd.cpp
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MainWnd.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** MainWnd.cpp 7 Feb 2004 13:55:16 -0000 1.10
--- MainWnd.cpp 7 Feb 2004 14:07:28 -0000 1.11
***************
*** 535,541 ****
--- 535,543 ----
theApp.emulator = GBASystem;
+ /* disabled due to problems
if(theApp.removeIntros && rom != NULL) {
*((u32 *)rom)= 0xea00002e;
}
+ */
if(theApp.autoIPS) {
Index: MainWndOptions.cpp
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MainWndOptions.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** MainWndOptions.cpp 20 Nov 2003 02:47:10 -0000 1.2
--- MainWndOptions.cpp 7 Feb 2004 14:07:28 -0000 1.3
***************
*** 640,649 ****
void MainWnd::OnOptionsEmulatorRemoveintrosgba()
{
! theApp.removeIntros = !theApp.removeIntros;
}
void MainWnd::OnUpdateOptionsEmulatorRemoveintrosgba(CCmdUI* pCmdUI)
{
! pCmdUI->SetCheck(theApp.removeIntros);
}
--- 640,650 ----
void MainWnd::OnOptionsEmulatorRemoveintrosgba()
{
! // theApp.removeIntros = !theApp.removeIntros;
}
void MainWnd::OnUpdateOptionsEmulatorRemoveintrosgba(CCmdUI* pCmdUI)
{
! pCmdUI->Enable(false);
! // pCmdUI->SetCheck(theApp.removeIntros);
}
|