Author: cwittich
Date: Wed Jun 21 19:07:53 2006
New Revision: 22464
URL:
http://svn.reactos.ru/svn/reactos?rev=22464&view=rev
Log:
bugfix: loading of harddisk images should work again
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=22464&…
==============================================================================
--- trunk/tools/Qemu GUI/QEmu.cs (original)
+++ trunk/tools/Qemu GUI/QEmu.cs Wed Jun 21 19:07:53 2006
@@ -169,7 +169,7 @@
for (int i = 0; i < 4; i++)
{
if (this.HDD[i].Enabled && (this.HDD[i].Path.Length > 0))
- buffer += "-hd" + ((char)i + 97) + " " + (char)
34 + this.HDD[i].Path + (char) 34 +" ";
+ buffer += "-hd" + ((char) (i + 97)) + " " +
(char) 34 + this.HDD[i].Path + (char) 34 +" ";
}
return buffer;
}