Update of /cvsroot/vba/VisualBoyAdvance/src/win32
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv11097/src/win32
Modified Files:
VBA.cpp
Log Message:
THe flash size will be set to the higher value when VBA is started for the first time. I hope we will never get any stupid pokemon threads from complete n00bs on the forum :D
Index: VBA.cpp
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/VBA.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** VBA.cpp 21 Jun 2006 16:58:15 -0000 1.18
--- VBA.cpp 22 Jul 2006 10:30:09 -0000 1.19
***************
*** 1333,1339 ****
ifbType = 0;
! winFlashSize = regQueryDwordValue("flashSize", 0x10000);
if(winFlashSize != 0x10000 && winFlashSize != 0x20000)
! winFlashSize = 0x10000;
flashSize = winFlashSize;
--- 1333,1339 ----
ifbType = 0;
! winFlashSize = regQueryDwordValue("flashSize", 0x20000);
if(winFlashSize != 0x10000 && winFlashSize != 0x20000)
! winFlashSize = 0x20000;
flashSize = winFlashSize;
|