globox

Platform game for the terminal
git clone git://git.bitsmanent.org/globox
Log | Files | Refs | README | LICENSE

commit 712030bc466ce2cfa1608858791192599e4edacd
parent 6ceaf95d463afdced190e51328a047550a632c89
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Sat, 15 Jul 2017 22:05:33 +0200

Use cfmakeraw() to setup the terminal.

Diffstat:
Mglobox.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/globox.c b/globox.c @@ -272,7 +272,7 @@ choose(char *opts, const char *msgstr, ...) { } fprintf(stdout, CURPOS CLEARLN, cols - 1, 0); ioblock(0); - return *o; + return *(o ? o : opts); } void @@ -500,7 +500,6 @@ ioblock(int block) { tcgetattr(0, &ti); ti.c_cc[VMIN] = block; - ti.c_cc[VTIME] = 0; tcsetattr(0, TCSANOW, &ti); } @@ -687,7 +686,9 @@ setup(void) { tcgetattr(0, &origti); cfmakeraw(&ti); ti.c_iflag |= ICRNL; - tcsetattr(0, TCSANOW, &ti); + ti.c_cc[VMIN] = 0; + ti.c_cc[VTIME] = 0; + tcsetattr(0, TCSAFLUSH, &ti); printf(CURSOFF); ioctl(0, TIOCGWINSZ, &ws);