diff options
author | sr55 <[email protected]> | 2008-02-02 15:34:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-02-02 15:34:27 +0000 |
commit | cdc741bb0ce20aabffe06fac42270aac98b8f2c6 (patch) | |
tree | d4178727d88f2d17325bde9ac7205163db4306f2 /win/C#/Program.cs | |
parent | 040cab19c1151d50063d602f336bd86b2430ca5d (diff) |
WinGui:
- now using C#.Net 08
- Fixed bug with VFR setting framerate when enabled.
- Fixed potential framerate bug (passing framerate without -r to the CLI)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1245 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Program.cs')
-rw-r--r-- | win/C#/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Program.cs b/win/C#/Program.cs index a613eca65..5f3b9464a 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -32,7 +32,7 @@ namespace Handbrake {
// Development Code Expiry.
// Remember to comment out on public release!!!
- if (DateTime.Now > DateTime.Parse("2008/02/27", new CultureInfo("en-US"))) { MessageBox.Show("Sorry, This development build of Handbrake has expired."); return; }
+ if (DateTime.Now > DateTime.Parse("2008/02/25", new CultureInfo("en-US"))) { MessageBox.Show("Sorry, This development build of Handbrake has expired."); return; }
// Check the system meets the system requirements.
Boolean launch = true;
|