From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 7 Jul 2014 04:08:08 +0000 (+0200)
Subject: Add to TODO.
X-Git-Tag: tce~736
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%7B%7B%20web_path%20%7D%7D/error?a=commitdiff_plain;h=8c06886c0abb95f74eefba52c0bb967b215f2126;p=plomrogue

Add to TODO.
---

diff --git a/TODO b/TODO
index 3b60887..76c8a47 100644
--- a/TODO
+++ b/TODO
@@ -28,3 +28,5 @@ CLIENT:
 - enable toggling of window borders
 
 - make log scrollable
+
+- do something about a growing log slowing down the client
diff --git a/src/server/field_of_view.h b/src/server/field_of_view.h
index 93ea982..85a414f 100644
--- a/src/server/field_of_view.h
+++ b/src/server/field_of_view.h
@@ -19,8 +19,6 @@ enum fov_cell_states {
     VISIBLE = 0x01
 };
 
-
-
 /* Return field of view map of the world as seen from the position of "eye". */
 extern uint8_t * build_fov_map(struct Thing * eye);