mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 22:58:46 +00:00
Fixed bug for Bill because he is a lazy boi.
This commit is contained in:
+1
-1
@@ -676,7 +676,7 @@ fmt_float :: proc(fi: ^Fmt_Info, v: f64, bit_size: int, verb: rune) {
|
|||||||
str[0] = ' ';
|
str[0] = ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(str) > 1 && str[1] == 'N' && str[1] == 'I' {
|
if len(str) > 1 && (str[1] == 'N' || str[1] == 'I') {
|
||||||
write_string(fi.buf, str);
|
write_string(fi.buf, str);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user