[ros-diffs] [cwittich] 22464: bugfix: loading of harddisk images should work again

cwittich at svn.reactos.org cwittich at svn.reactos.org
Wed Jun 21 17:07:54 CEST 2006


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&r1=22463&r2=22464&view=diff
==============================================================================
--- 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;
         }




More information about the Ros-diffs mailing list