diff -r 04905193c432 -r 5c80f37c0330 Hardware/HexStringArray.cs --- a/Hardware/HexStringArray.cs Sat Apr 30 21:01:54 2011 +0000 +++ b/Hardware/HexStringArray.cs Sun May 01 13:37:15 2011 +0000 @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2010 + Portions created by the Initial Developer are Copyright (C) 2009-2011 the Initial Developer. All Rights Reserved. Contributor(s): @@ -46,7 +46,7 @@ StringSplitOptions.RemoveEmptyEntries); foreach (string line in lines) { - string[] array = line.Split(new[] { ' ' }, + string[] array = line.Split(new[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries); if (array.Length == 0) continue;