diff options
author | sr55 <[email protected]> | 2008-09-18 16:51:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-09-18 16:51:49 +0000 |
commit | c8338193fc58ba12f46870027c1e1c6a2454d145 (patch) | |
tree | 51a8191152ed2372d5f6b84007a338666d90f6da /win/C#/Parsing | |
parent | 636794fcffc0c451b557aeaa977c5fde37cced66 (diff) |
WinGui:
- Couple of bug fixes. Crop, -f option, typo
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1717 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing')
-rw-r--r-- | win/C#/Parsing/Title.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs index f819ab1b3..a2205fcb7 100644 --- a/win/C#/Parsing/Title.cs +++ b/win/C#/Parsing/Title.cs @@ -192,7 +192,7 @@ namespace Handbrake.Parsing * we expect to be in the output, so read one line ahead to skip over the unknown line
*/
- if ((char)sr.Peek() != '[' && (char)sr.Peek() != '+' && (char)sr.Peek() != null) // Hack, Fix later
+ if ((char)sr.Peek() != '[' && (char)sr.Peek() != '+' ) // Hack, Fix later
sr.ReadLine();
}
|