diff options
| author | Roy Ivy III <[email protected]> | 2018-11-02 12:16:35 -0500 |
|---|---|---|
| committer | Roy Ivy III <[email protected]> | 2018-11-02 12:16:35 -0500 |
| commit | a7543cbdfa7fcbe04178d53add85de04b54933b7 (patch) | |
| tree | 7f41d6ecceda7788f7cbaf63010442679985b1f9 /xmake/rules/wdk/mc/xmake.lua | |
| parent | 06481639fce5515f1708e23367aab5bfa20f0e53 (diff) | |
revise progress formatting to space-leading three digit percentages ('%3d')
Diffstat (limited to 'xmake/rules/wdk/mc/xmake.lua')
| -rw-r--r-- | xmake/rules/wdk/mc/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/wdk/mc/xmake.lua b/xmake/rules/wdk/mc/xmake.lua index 12543bcfb..d3152749d 100644 --- a/xmake/rules/wdk/mc/xmake.lua +++ b/xmake/rules/wdk/mc/xmake.lua @@ -105,9 +105,9 @@ rule("wdk.mc") -- trace progress info if option.get("verbose") then - cprint("${green}[%02d%%]:${dim} compiling.wdk.mc %s", opt.progress, sourcefile) + cprint("${green}[%3d%%]:${dim} compiling.wdk.mc %s", opt.progress, sourcefile) else - cprint("${green}[%02d%%]:${clear} compiling.wdk.mc %s", opt.progress, sourcefile) + cprint("${green}[%3d%%]:${clear} compiling.wdk.mc %s", opt.progress, sourcefile) end -- do message compile |
