From: Brendan Hansen Date: Wed, 18 Oct 2023 14:48:47 +0000 (-0500) Subject: bugfix: tty stubs on windows were outdated X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=ba2838ad2407bf0f9d31375e557b687ebeae34d8;p=onyx.git bugfix: tty stubs on windows were outdated --- diff --git a/runtime/src/ort_tty.h b/runtime/src/ort_tty.h index fa5b8fc6..2bbf6b1e 100644 --- a/runtime/src/ort_tty.h +++ b/runtime/src/ort_tty.h @@ -31,7 +31,7 @@ ONYX_DEF(__tty_get, (WASM_I32), ()) { state->columns = 25; state->echo = 1; state->input_buffered = 1; - state->linefeeds_ignored = 0; + state->input_linefeeds = 0; #endif return NULL;