aboutsummaryrefslogtreecommitdiff
path: root/TUI/windows.jai
diff options
context:
space:
mode:
authordam <dam@gudinoff>2024-12-30 02:38:33 +0000
committerdam <dam@gudinoff>2025-02-14 10:49:01 +0000
commit120dac0d67cba1b39a7aedc1bf4493e1ef2cb5c4 (patch)
tree428dff39d60a9fecb9b0ed36024064614e5e089e /TUI/windows.jai
parent863bfec23df598b476e26559c117791d1083611a (diff)
downloadjai-modules-120dac0d67cba1b39a7aedc1bf4493e1ef2cb5c4.tar.zst
jai-modules-120dac0d67cba1b39a7aedc1bf4493e1ef2cb5c4.zip
Update code to comply with compiler beta 0.2.004.
Diffstat (limited to 'TUI/windows.jai')
-rw-r--r--TUI/windows.jai2
1 files changed, 1 insertions, 1 deletions
diff --git a/TUI/windows.jai b/TUI/windows.jai
index f8d8bc8..8105f61 100644
--- a/TUI/windows.jai
+++ b/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);