Author: greatlrd
Date: Wed Jun 21 21:25:53 2006
New Revision: 22474
URL:
http://svn.reactos.ru/svn/reactos?rev=22474&view=rev
Log:
fixing the hd bug, this code is working both on windows 2k and xp, but it still contain
some regress some other place
Modified:
trunk/tools/Qemu GUI/QEmu.cs
trunk/tools/Qemu GUI/Qemu GUI.suo
trunk/tools/Qemu GUI/bin/Release/Qemu GUI.exe
Modified: trunk/tools/Qemu GUI/QEmu.cs
URL:
http://svn.reactos.ru/svn/reactos/trunk/tools/Qemu%20GUI/QEmu.cs?rev=22474&…
==============================================================================
--- trunk/tools/Qemu GUI/QEmu.cs (original)
+++ trunk/tools/Qemu GUI/QEmu.cs Wed Jun 21 21:25:53 2006
@@ -178,9 +178,9 @@
for (int i = 0; i < 4; i++)
{
if (this.HDD[i].Enabled && (this.HDD[i].Path.Length > 0))
- buffer += String.Format(@"-hd{0}
""{1}""", (char) ('a' + i), this.HDD[i].Path);
- }
- Console.WriteLine(buffer);
+ buffer += "-hd" + Convert.ToChar('a' + i) + "
\"" + this.HDD[i].Path + "\" ";
+
+ }
return buffer;
}
Modified: trunk/tools/Qemu GUI/Qemu GUI.suo
URL:
http://svn.reactos.ru/svn/reactos/trunk/tools/Qemu%20GUI/Qemu%20GUI.suo?rev…
==============================================================================
Binary files - no diff available.
Modified: trunk/tools/Qemu GUI/bin/Release/Qemu GUI.exe
URL:
http://svn.reactos.ru/svn/reactos/trunk/tools/Qemu%20GUI/bin/Release/Qemu%2…
==============================================================================
Binary files - no diff available.