1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-25 01:57:47 +01:00

update config to latest version

This commit is contained in:
FunkyFr3sh 2023-08-04 11:45:21 +02:00
parent d108816fb6
commit e286a6cdf3
4 changed files with 417 additions and 432 deletions

View File

@ -4,9 +4,9 @@ object ConfigForm: TConfigForm
BorderIcons = [biSystemMenu, biMinimize] BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle BorderStyle = bsSingle
Caption = 'cnc-ddraw config' Caption = 'cnc-ddraw config'
ClientHeight = 475 ClientHeight = 481
ClientWidth = 708 ClientWidth = 704
Color = clBlack Color = clHotLight
Font.Charset = DEFAULT_CHARSET Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText Font.Color = clWindowText
Font.Height = -11 Font.Height = -11
@ -2677,10 +2677,9 @@ object ConfigForm: TConfigForm
61C0650530766087F0B9DE67A1EF3B173173597F3B695CC608E0B202F8FC22D7 61C0650530766087F0B9DE67A1EF3B173173597F3B695CC608E0B202F8FC22D7
BBBF4CD8CBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCB BBBF4CD8CBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCBB88CCB
B88CB18EFF1FA2974C1C31AF16A40000000049454E44AE426082} B88CB18EFF1FA2974C1C31AF16A40000000049454E44AE426082}
OldCreateOrder = False
Position = poDesktopCenter Position = poDesktopCenter
StyleElements = [seFont, seBorder]
OnCreate = FormCreate OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13 TextHeight = 13
object AdvancedPnl: TPanel object AdvancedPnl: TPanel
Left = 201 Left = 201
@ -3250,16 +3249,17 @@ object ConfigForm: TConfigForm
Width = 201 Width = 201
Height = 465 Height = 465
BevelOuter = bvNone BevelOuter = bvNone
Color = clBlack Color = clHotLight
ParentBackground = False ParentBackground = False
TabOrder = 0 TabOrder = 0
StyleElements = [seFont, seBorder]
DesignSize = ( DesignSize = (
201 201
465) 465)
object DisplayBtn: TSpeedButton object DisplayBtn: TSpeedButton
Left = 5 Left = 5
Top = 8 Top = 8
Width = 187 Width = 190
Height = 41 Height = 41
Anchors = [akLeft, akTop, akRight] Anchors = [akLeft, akTop, akRight]
Caption = 'Display Settings' Caption = 'Display Settings'
@ -3270,13 +3270,13 @@ object ConfigForm: TConfigForm
Font.Name = 'Segoe UI' Font.Name = 'Segoe UI'
Font.Style = [fsBold] Font.Style = [fsBold]
ParentFont = False ParentFont = False
StyleElements = [seFont, seBorder] StyleElements = [seClient, seBorder]
OnClick = DisplayBtnClick OnClick = DisplayBtnClick
end end
object AdvancedBtn: TSpeedButton object AdvancedBtn: TSpeedButton
Left = 5 Left = 5
Top = 55 Top = 55
Width = 187 Width = 190
Height = 41 Height = 41
Anchors = [akLeft, akTop, akRight] Anchors = [akLeft, akTop, akRight]
Caption = 'Advanced Settings' Caption = 'Advanced Settings'
@ -3287,12 +3287,13 @@ object ConfigForm: TConfigForm
Font.Name = 'Segoe UI' Font.Name = 'Segoe UI'
Font.Style = [fsBold] Font.Style = [fsBold]
ParentFont = False ParentFont = False
StyleElements = [seClient, seBorder]
OnClick = AdvancedBtnClick OnClick = AdvancedBtnClick
end end
object CompatibilityBtn: TSpeedButton object CompatibilityBtn: TSpeedButton
Left = 5 Left = 5
Top = 102 Top = 102
Width = 187 Width = 190
Height = 41 Height = 41
Anchors = [akLeft, akTop, akRight] Anchors = [akLeft, akTop, akRight]
Caption = 'Compatibility Settings' Caption = 'Compatibility Settings'
@ -3303,6 +3304,7 @@ object ConfigForm: TConfigForm
Font.Name = 'Segoe UI' Font.Name = 'Segoe UI'
Font.Style = [fsBold] Font.Style = [fsBold]
ParentFont = False ParentFont = False
StyleElements = [seClient, seBorder]
OnClick = CompatibilityBtnClick OnClick = CompatibilityBtnClick
end end
end end

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
{ {
Application->Initialize(); Application->Initialize();
Application->MainFormOnTaskBar = true; Application->MainFormOnTaskBar = true;
TStyleManager::TrySetStyle("Windows10 Blue"); TStyleManager::TrySetStyle("Windows10");
Application->CreateForm(__classid(TConfigForm), &ConfigForm); Application->CreateForm(__classid(TConfigForm), &ConfigForm);
Application->Run(); Application->Run();
} }

View File

@ -344,7 +344,7 @@ static void cfg_create_ini()
"max_resolutions=0\n" "max_resolutions=0\n"
"limit_bltfast=false\n" "limit_bltfast=false\n"
"game_handles_close=false\n" "game_handles_close=false\n"
"fixpitch=true\n" "fixpitch=false\n"
"fixnotresponding=false\n" "fixnotresponding=false\n"
"lock_surfaces=false\n" "lock_surfaces=false\n"
"releasealt=false\n" "releasealt=false\n"