mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-24 17:49:52 +01:00
add 1024x576 to config
This commit is contained in:
parent
b9eead1947
commit
608cb6fa68
@ -749,7 +749,7 @@ void __fastcall TConfigForm::FormCreate(TObject *Sender)
|
|||||||
int reso = hd_ini->ReadInteger("Game", "Resolution", 4);
|
int reso = hd_ini->ReadInteger("Game", "Resolution", 4);
|
||||||
|
|
||||||
if (!cwidth || !cheight) {
|
if (!cwidth || !cheight) {
|
||||||
ResolutionCbx->ItemIndex = reso <= 10 ? reso : 4;
|
ResolutionCbx->ItemIndex = reso <= 11 ? reso : 4;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ResolutionCbx->AddItem(IntToStr(cwidth) + "x" + IntToStr(cheight), NULL);
|
ResolutionCbx->AddItem(IntToStr(cwidth) + "x" + IntToStr(cheight), NULL);
|
||||||
@ -956,14 +956,14 @@ void TConfigForm::SaveSettings()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ResolutionCbx->ItemIndex <= 10) {
|
if (ResolutionCbx->ItemIndex <= 11) {
|
||||||
hd_ini->WriteInteger("Game", "Resolution", ResolutionCbx->ItemIndex);
|
hd_ini->WriteInteger("Game", "Resolution", ResolutionCbx->ItemIndex);
|
||||||
|
|
||||||
hd_ini->WriteInteger("Game", "Width", 0);
|
hd_ini->WriteInteger("Game", "Width", 0);
|
||||||
hd_ini->WriteInteger("Game", "Height", 0);
|
hd_ini->WriteInteger("Game", "Height", 0);
|
||||||
|
|
||||||
if (ResolutionCbx->Items->Count == 12) {
|
if (ResolutionCbx->Items->Count == 13) {
|
||||||
ResolutionCbx->Items->Delete(11);
|
ResolutionCbx->Items->Delete(12);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3539,7 +3539,7 @@ object ConfigForm: TConfigForm
|
|||||||
BevelInner = bvNone
|
BevelInner = bvNone
|
||||||
BevelOuter = bvSpace
|
BevelOuter = bvSpace
|
||||||
Style = csDropDownList
|
Style = csDropDownList
|
||||||
DropDownCount = 12
|
DropDownCount = 13
|
||||||
Font.Charset = DEFAULT_CHARSET
|
Font.Charset = DEFAULT_CHARSET
|
||||||
Font.Color = clWindowText
|
Font.Color = clWindowText
|
||||||
Font.Height = -16
|
Font.Height = -16
|
||||||
@ -3554,6 +3554,7 @@ object ConfigForm: TConfigForm
|
|||||||
'1024x768 (4:3)'
|
'1024x768 (4:3)'
|
||||||
'832x480 (16:9)'
|
'832x480 (16:9)'
|
||||||
'960x544 (16:9)'
|
'960x544 (16:9)'
|
||||||
|
'1024x576 (16:9)'
|
||||||
'1280x704 (16:9)'
|
'1280x704 (16:9)'
|
||||||
'1120x480 (21:9)'
|
'1120x480 (21:9)'
|
||||||
'1280x544 (21:9)'
|
'1280x544 (21:9)'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user