minor
This commit is contained in:
parent
f4091dfbf4
commit
f0cea72a19
|
@ -1445,11 +1445,10 @@ void VBA::loadSettings()
|
|||
pVideoDriverGUID = &videoDriverGUID;
|
||||
|
||||
fsAdapter = regQueryDwordValue("fsAdapter", 0);
|
||||
fsWidth = regQueryDwordValue("fsWidth", 0);
|
||||
fsHeight = regQueryDwordValue("fsHeight", 0);
|
||||
fsColorDepth = regQueryDwordValue("fsColorDepth", 0);
|
||||
fsWidth = regQueryDwordValue("fsWidth", 800);
|
||||
fsHeight = regQueryDwordValue("fsHeight", 600);
|
||||
fsColorDepth = regQueryDwordValue("fsColorDepth", 32);
|
||||
fsFrequency = regQueryDwordValue("fsFrequency", 60);
|
||||
fsAdapter = regQueryDwordValue("fsAdapter", 0);
|
||||
|
||||
if(videoOption == VIDEO_OTHER) {
|
||||
if(fsWidth < 0 || fsWidth > 4095 || fsHeight < 0 || fsHeight > 4095)
|
||||
|
|
|
@ -141,7 +141,7 @@ FONT 8, "MS Sans Serif", 0, 0, 0x1
|
|||
BEGIN
|
||||
ICON 101,IDC_STATIC,6,6,20,20
|
||||
CTEXT "VisualBoyAdvance Emulator",IDC_STATIC,34,7,120,8
|
||||
CTEXT "Copyright © 2007 VBA development team",IDC_STATIC,16,36,144,8
|
||||
CTEXT "Copyright © 2008 VBA development team",IDC_STATIC,16,36,144,8
|
||||
CTEXT "https://vbam.bountysource.com",IDC_URL,6,126,165,8
|
||||
CTEXT "Contributions by Costis and original VBA Team",IDC_STATIC,7,49,165,8
|
||||
CTEXT "Version",IDC_STATIC,47,17,27,8
|
||||
|
|
Loading…
Reference in New Issue