Merge 1.x into master #1

Merged
sikofitt merged 14 commits from 1.x into master 2022-05-17 10:29:27 -07:00
2 changed files with 553 additions and 401 deletions
Showing only changes of commit 6405f1c7b9 - Show all commits

947
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -92,10 +92,13 @@ final class Getch
if ($ffi->_kbhit()) { if ($ffi->_kbhit()) {
$result = $ffi->_getch(); $result = $ffi->_getch();
$ffi->_ungetch($result); $ffi->_ungetch($result);
return $result; return $result;
} }
return -1; return -1;
} }
return $ffi->cinPeek(); return $ffi->cinPeek();
} }