From: Christian Heller Date: Wed, 1 May 2013 23:38:59 +0000 (+0200) Subject: Corrected broken if. X-Git-Tag: tce~1326 X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;ds=sidebyside;h=4278fa073915777094328bc6575cdcc1f849f9f1;p=plomrogue Corrected broken if. --- diff --git a/windows.c b/windows.c index 01981e5..323d0c6 100644 --- a/windows.c +++ b/windows.c @@ -153,7 +153,7 @@ void draw_windows_borders (struct Win * win, struct Win * win_active, struct Cor void draw_window(struct Win * win) { // Draw window content if visible. - if (win->height > 1 && win->width > 1) ; + if (win->height > 1 && win->width > 1) win->draw(win); } void draw_windows (struct Win * win) {