1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00

Unifies compilation progress bar (no console mode) with CHR$(219).

We'd have four different progress bar styles,... now we keep having three.
This commit is contained in:
FellippeHeitor 2021-01-15 20:27:51 -03:00
parent dcd3862c65
commit 45d483a4ab

View file

@ -2762,7 +2762,7 @@ DO
END IF
ELSE
LOCATE , 1
PRINT "[" + STRING$(percentagechars, 254) + SPACE$(maxprogresswidth - percentagechars) + "]" + STR$(percentage) + "%";
PRINT STRING$(percentagechars, 219) + STRING$(maxprogresswidth - percentagechars, 176) + STR$(percentage) + "%";
END IF
END IF
END IF
@ -11484,7 +11484,7 @@ IF idemode = 0 AND NOT QuietMode THEN
PRINT "[" + STRING$(maxprogresswidth, ".") + "] 100%"
ELSE
LOCATE , 1
PRINT "[" + STRING$(maxprogresswidth, 254) + "] 100%"
PRINT STRING$(maxprogresswidth, 219) + " 100%"
END IF
END IF