Author: cwittich Date: Wed Jun 21 20:57:25 2006 New Revision: 22472
URL: http://svn.reactos.ru/svn/reactos?rev=22472&view=rev Log: fixed another small bug
Modified: trunk/tools/Qemu GUI/QEmu.cs
Modified: trunk/tools/Qemu GUI/QEmu.cs URL: http://svn.reactos.ru/svn/reactos/trunk/tools/Qemu%20GUI/QEmu.cs?rev=22472&a... ============================================================================== --- trunk/tools/Qemu GUI/QEmu.cs (original) +++ trunk/tools/Qemu GUI/QEmu.cs Wed Jun 21 20:57:25 2006 @@ -365,6 +365,8 @@ if (this.ES1370) buffer += "es1370,";
+ + Console.WriteLine(buffer.Substring(0, buffer.Length - 1) + " "); return buffer.Substring(0, buffer.Length - 1) + " "; }
@@ -402,7 +404,7 @@ if (this.VBE3) buffer += "-std-vga ";
- if (this.GDBPort != "1234") + if (this.GDBPort != 1234) buffer += "-p " + this.GDBPort.ToString() + " ";
return buffer;