From 5a4382a9965592860ed10c7d07b4cdccf9a1e118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 30 Mar 2013 23:03:04 +0100 Subject: [PATCH] ctk-curses: uncomment refresh() calls I'm not yet sure they are required there but it shouldn't hurt. --- platform/native/ctk/ctk-curses.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/native/ctk/ctk-curses.c b/platform/native/ctk/ctk-curses.c index 780fbefd1..192284435 100644 --- a/platform/native/ctk/ctk-curses.c +++ b/platform/native/ctk/ctk-curses.c @@ -293,7 +293,7 @@ console_cputc(char c) break; } addch(ch); - /*refresh(); */ + refresh(); } /*-----------------------------------------------------------------------------------*/ void @@ -307,7 +307,7 @@ void cclear(unsigned char length) { hline(' ', length); - /*refresh(); */ + refresh(); } /*-----------------------------------------------------------------------------------*/ void