[PC-BSD Commits] r2555 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Thu Aug 7 14:12:44 PDT 2008
Author: kris
Date: 2008-08-07 14:12:44 -0700 (Thu, 07 Aug 2008)
New Revision: 2555
Modified:
pcbsd/trunk/PCInstall/pcinstall.cpp
Log:
Fixed a bug which displayed the wrong slice letter in our GUI
Modified: pcbsd/trunk/PCInstall/pcinstall.cpp
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.cpp 2008-08-07 19:59:21 UTC (rev 2554)
+++ pcbsd/trunk/PCInstall/pcinstall.cpp 2008-08-07 21:12:44 UTC (rev 2555)
@@ -1933,15 +1933,18 @@
switch( i ) {
case 2:
+ PartLetter = "d";
+ break;
+ case 3:
PartLetter = "e";
break;
- case 3:
+ case 4:
PartLetter = "f";
break;
- case 4:
+ case 5:
PartLetter = "g";
break;
- case 5:
+ case 6:
PartLetter = "h";
break;
}
More information about the Commits
mailing list