diff options
| author | lempamo <[email protected]> | 2017-07-10 20:31:52 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-10 20:31:52 -0400 |
| commit | fa899ea6ad1e54b42c18441d383e47a4b4820ef1 (patch) | |
| tree | e0f36d22062deab372b27af5a03943443d14c324 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs | |
| parent | 37c3a34124a8906c558764aac41906017293c91a (diff) | |
| download | histacom2-fa899ea6ad1e54b42c18441d383e47a4b4820ef1.tar.gz histacom2-fa899ea6ad1e54b42c18441d383e47a4b4820ef1.tar.bz2 histacom2-fa899ea6ad1e54b42c18441d383e47a4b4820ef1.zip | |
fixed a few things with hwcv and buttons
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs index 6f9bb07..c1a203a 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs @@ -15,11 +15,12 @@ namespace TimeHACK.OS.Win95.Win95Apps public WinClassicHWCV() { InitializeComponent(); + Button1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); } private void Button1_Click(object sender, EventArgs e) { - if (TextBox1.Text == "www.12padams.com") + if (TextBox1.Text == "www.12padams.com" || TextBox1.Text == "http://www.12padams.com/") { Label3.Show(); Label3.Text = "Hidden Content Found: Time Distorter"; |
