This commit is contained in:
Andi Jahja
2001-11-15 22:09:28 +00:00
parent 8ecf795086
commit 6c0a8d66b8

View File

@@ -200,7 +200,8 @@ static void hb_gaugeUpdate( PHB_ITEM pArray, float fPercent )
if( hb_arrayGetL( pArray, B_DISPLAYNUM ) )
{
sprintf( szPct, "%3.0f\%", fPercent * 100 );
// sprintf( szPct, "%3.0f\%", fPercent * 100 );
sprintf( szPct, "%3.0f%%", fPercent * 100 );
hb_gtWriteAt( (USHORT) hb_arrayGetNL( pArray, B_TOP ),
(USHORT) iCenter + 2, (BYTE *) szPct, 4 );
}