mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-25 01:57:47 +01:00
34 lines
788 B
C++
34 lines
788 B
C++
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#include <vcl.h>
|
||
|
#pragma hdrstop
|
||
|
|
||
|
#include "ConfigFormUnit.h"
|
||
|
//---------------------------------------------------------------------------
|
||
|
#pragma package(smart_init)
|
||
|
#pragma resource "*.dfm"
|
||
|
TConfigForm *ConfigForm;
|
||
|
//---------------------------------------------------------------------------
|
||
|
__fastcall TConfigForm::TConfigForm(TComponent* Owner)
|
||
|
: TForm(Owner)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __fastcall TConfigForm::DisplayBtnClick(TObject *Sender)
|
||
|
{
|
||
|
DisplayPnl->Visible = true;
|
||
|
AdvDisplayPnl->Visible = false;
|
||
|
CompatibilityPnl->Visible = false;
|
||
|
}
|
||
|
|
||
|
void __fastcall TConfigForm::AdvSettingsBtnClick(TObject *Sender)
|
||
|
{
|
||
|
AdvDisplayPnl->Visible = true;
|
||
|
DisplayPnl->Visible = false;
|
||
|
CompatibilityPnl->Visible = false;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|