From: Christian Heller <c.heller@plomlompom.de>
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/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/new_day?a=commitdiff_plain;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) {