Index: trunk/i386/boot2/graphics.c =================================================================== --- trunk/i386/boot2/graphics.c (revision 374) +++ trunk/i386/boot2/graphics.c (revision 375) @@ -1193,21 +1193,24 @@ return; } - if (gVerboseMode) { - currentTickTime = time18(); // late binding - if (currentTickTime < lastTickTime + MIN_TICKS) { - return; - } else { - lastTickTime = currentTickTime; - } - - if (getVideoMode() == VGA_TEXT_MODE) { - if (currentIndicator >= sizeof(indicator)) { - currentIndicator = 0; - } - printf("%c\b", indicator[currentIndicator++]); - } - } + currentTickTime = time18(); // late binding + if (currentTickTime < lastTickTime + MIN_TICKS) + { + return; + } + else + { + lastTickTime = currentTickTime; + } + + if (getVideoMode() == VGA_TEXT_MODE) + { + if (currentIndicator >= sizeof(indicator)) + { + currentIndicator = 0; + } + printf("%c\b", indicator[currentIndicator++]); + } } void