remove test code, fix os_console_log additional new line

This commit is contained in:
Krzosa Karol
2025-01-21 13:48:43 +01:00
parent 2b4d641857
commit 5176a554e8
3 changed files with 53 additions and 149 deletions

View File

@@ -24,7 +24,7 @@ fn void os_error_box(char *str) {
fn void os_console_log(char *str) {
OutputDebugStringA(str);
puts(str);
fputs(str, stdout);
}
fn f64 os_parse_float(char *str) {