Skip to content

Commit

Permalink
Corrected minor stuff about the animation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheaterman committed Jun 17, 2009
1 parent d0b5bd4 commit 55038fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ttyclock.c
Expand Up @@ -98,7 +98,7 @@ init(void)

set_center(ttyclock->option.center);

nodelay(ttyclock->framewin, TRUE);
nodelay(stdscr, True);

wrefresh(ttyclock->datewin);
wrefresh(ttyclock->framewin);
Expand Down Expand Up @@ -325,7 +325,7 @@ key_event(void)

struct timespec length = { 0, UPDATETIME };

switch(c = wgetch(ttyclock->framewin))
switch(c = wgetch(stdscr))
{
case KEY_UP:
case 'k':
Expand Down

0 comments on commit 55038fd

Please sign in to comment.