tt

A terminal-based typing game
git clone git://pcardenasb.com/tt
Log | Files | Refs | README | LICENSE

commit 78ee7ff36d84be6f20c379acde918d22eba40c0a
parent baa19de2f355f4b3dab1008ac56ffe22abf42523
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date:   Wed, 26 Jun 2024 14:11:54 -0500

Fixed blink bug

Diffstat:
Mttcli.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ttcli.c b/ttcli.c @@ -54,7 +54,7 @@ void print_text( short *spaces, short num_spaces) { - wclear(win); + werase(win); float elapsed = (last_input.tv_sec - first_input.tv_sec) + (last_input.tv_nsec - first_input.tv_nsec) / 1000000000.0;