diff options
| author | San Jacobs | 2025-11-01 01:05:17 +0100 |
|---|---|---|
| committer | San Jacobs | 2025-11-01 01:05:17 +0100 |
| commit | 0f0521166eb6f8653ed37fd1e6e695fc17200db8 (patch) | |
| tree | c7a09d96d3627ae9cba7d02fe7580e7c32e19175 /main.odin | |
| parent | 9e169b92e803ae154fb0d94240c73df31c200aa3 (diff) | |
| download | statics-master.tar.gz statics-master.tar.bz2 statics-master.zip | |
Diffstat (limited to 'main.odin')
| -rw-r--r-- | main.odin | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,6 +4,7 @@ import "core:fmt" import "core:os" import "core:strings" import "core:strconv" +import "core:sys/windows" dayrate : f64 = 3500 @@ -31,7 +32,9 @@ Filter :: struct { } main :: proc() { - + when ODIN_OS == .Windows { + windows.SetConsoleOutputCP(windows.CODEPAGE.UTF8) + } arg_count := len(os.args)-1 filters : Arg_Flags = {} parsing : Arg_Type = .NONE |