summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Thom <markjordanthom@gmail.com>2020-02-19 21:44:18 -0700
committerMark Thom <markjordanthom@gmail.com>2020-02-19 21:44:18 -0700
commiteb1980d2869ed5a6cf43910175bde00ab57869d1 (patch)
treec6ca71b3e4131ed176e925a9abda67fb2b6e2395
parent424af312e551759768993e5d5404aaca2276a113 (diff)
parentd97c670fcd405465681ee2799b1658b1cd911521 (diff)
Merge branch 'master' of https://github.com/mthom/rusty-wamv0.8.118
-rw-r--r--src/prolog/machine/system_calls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prolog/machine/system_calls.rs b/src/prolog/machine/system_calls.rs
index 6915a863..78677b94 100644
--- a/src/prolog/machine/system_calls.rs
+++ b/src/prolog/machine/system_calls.rs
@@ -40,7 +40,7 @@ pub fn next_keypress() -> ContinueResult {
for c in stdin.keys() {
match c.unwrap() {
- Key::Char(' ') | Key::Char(';') => return ContinueResult::ContinueQuery,
+ Key::Char(' ') | Key::Char(';') | Key::Char('n') => return ContinueResult::ContinueQuery,
Key::Char('.') => return ContinueResult::Conclude,
_ => {}
}