diff options
| author | dam <dam@gudinoff> | 2024-12-30 02:41:11 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2025-02-14 10:58:22 +0000 |
| commit | 70b329f96d85db5bbe28c5a85c5d515660437a6c (patch) | |
| tree | 050ab8d00736eb9b59c84f62103c3bec0b64a44a /modules/TUI/windows.jai | |
| parent | ec98642dfdf9e113702becebd8cac122ba1cc14d (diff) | |
| download | task-time-tracker-70b329f96d85db5bbe28c5a85c5d515660437a6c.tar.zst task-time-tracker-70b329f96d85db5bbe28c5a85c5d515660437a6c.zip | |
Update code to comply with compiler beta 0.2.004.
Diffstat (limited to 'modules/TUI/windows.jai')
| -rw-r--r-- | modules/TUI/windows.jai | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/TUI/windows.jai b/modules/TUI/windows.jai index f8d8bc8..8105f61 100644 --- a/modules/TUI/windows.jai +++ b/modules/TUI/windows.jai @@ -292,7 +292,7 @@ OS_read_input :: (buffer: *u8, bytes_to_read: s64) -> bytes_read: s64, success : return 0, false; } - result:, success = wide_to_utf8_new(widechar_view.data, xx widechar_view.count); + result:, success = wide_to_utf8(widechar_view.data, xx widechar_view.count); if success == false { error_code, error_string := get_error_value_and_string(); log_tui_error("Failed to convert from wide to UTF8: code %, %", error_code, error_string); |
