From: Christian Heller Date: Tue, 30 Apr 2013 02:56:44 +0000 (+0200) Subject: Made comment more precise. X-Git-Tag: tce~1334 X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=c29af0467dbd947c926d0052b729e48fa641d05e;p=plomrogue Made comment more precise. --- diff --git a/windows.c b/windows.c index 8e3ae61..7e11809 100644 --- a/windows.c +++ b/windows.c @@ -94,7 +94,7 @@ void update_windows (struct WinMeta * win_meta, struct Win * win) { update_windows (win_meta, win->next); } void destroy_window (struct Win * win) { -// Undraw and delete window. +// Delete window. delwin(win->curses_win); win->curses_win = 0; }