Removed spurious debug verbose line.

This commit is contained in:
2016-09-06 22:59:00 +01:00
parent 01eb234fee
commit 78920681a8
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2016-09-06 Natalia Portillo <claunia@claunia.com>
* Version.cs: Removed spurious debug verbose line.
2016-09-06 Natalia Portillo <claunia@claunia.com>
* PascalString.cs:

View File

@@ -67,7 +67,6 @@ namespace Resources
tmpStr = new byte[resource[6] + 1];
Array.Copy(resource, 6, tmpStr, 0, tmpStr.Length);
VersionString = PascalString.GetString(tmpStr);
System.Console.WriteLine("{0} == {1}, \"{2}\"", resource[6], tmpStr.Length, VersionString);
tmpMsg = new byte[resource[6 + tmpStr.Length] + 1];
Array.Copy(resource, 6 + tmpStr.Length, tmpMsg, 0, tmpMsg.Length);
VersionMessage = PascalString.GetString(tmpMsg);