mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Implement #807
This commit is contained in:
+3
-3
@@ -641,9 +641,9 @@ fmt_write_padding :: proc(fi: ^Info, width: int) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
pad_byte: byte = '0';
|
pad_byte: byte = ' ';
|
||||||
if fi.space {
|
if !fi.space {
|
||||||
pad_byte = ' ';
|
pad_byte = '0';
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := 0; i < width; i += 1 {
|
for i := 0; i < width; i += 1 {
|
||||||
|
|||||||
Reference in New Issue
Block a user