diff options
author | sr55 <[email protected]> | 2008-09-19 06:30:57 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-09-19 06:30:57 +0000 |
commit | 68f77cf03746c1c44866bcb2aaa4d70a41e778cd (patch) | |
tree | 3403a31516a7d14a2a67edd0b753673b2a3f66f2 /win | |
parent | da2304375cbfc768a8981cf445f6b1fadb365030 (diff) |
WinGui:
- Forgot to remove a line of code used for debugging.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1721 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/frmReadDVD.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs index 8ecedc8dd..21dfa6505 100644 --- a/win/C#/frmReadDVD.cs +++ b/win/C#/frmReadDVD.cs @@ -75,7 +75,7 @@ namespace Handbrake throw new Exception("Unable to retrieve the DVD Info. dvdinfo.dat is missing. \nExpected location of dvdinfo.dat: \n" + dvdInfoPath);
}
- using (StreamReader sr = new StreamReader("c:\\dvdinfo.dat"))
+ using (StreamReader sr = new StreamReader(dvdInfoPath))
{
thisDvd = Parsing.DVD.Parse(sr);
sr.Close();
|