From 6c0a8d66b823923788b7bc3f11133da44a99de05 Mon Sep 17 00:00:00 2001 From: Andi Jahja Date: Thu, 15 Nov 2001 22:09:28 +0000 Subject: [PATCH] andijahja@cbn.net.id --- harbour/contrib/samples/gauge.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/harbour/contrib/samples/gauge.c b/harbour/contrib/samples/gauge.c index 1464363fb9..5a91b3a1d3 100644 --- a/harbour/contrib/samples/gauge.c +++ b/harbour/contrib/samples/gauge.c @@ -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 ); }