diff options
author | sr55 <[email protected]> | 2009-07-31 15:51:06 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-31 15:51:06 +0000 |
commit | 9226415e4bc37ff9b26c8e183e7c4835a2003eac (patch) | |
tree | 65e0b5f86f0a9d27aef004843232c43c654acf98 /win/C# | |
parent | 6051aa0f78e07a069ea44230a72d2e765a1893ba (diff) |
WinGui:
- Left a debug line change in by mistake. Fixed
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2740 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#')
-rw-r--r-- | win/C#/frmMain.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 94e2cc6d0..97f2cb500 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -1443,7 +1443,7 @@ namespace Handbrake dvdInfoPath);
}
- using (StreamReader sr = new StreamReader("scanlog.txt"))
+ using (StreamReader sr = new StreamReader(dvdInfoPath))
{
thisDVD = DVD.Parse(sr);
sr.Close();
|