From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 14 May 2014 01:19:54 +0000 (+0200)
Subject: Server: Remove uncommented lines.
X-Git-Tag: tce~750
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/static/%7B%7B%20web_path%20%7D%7D/%7B%7Bdb.prefix%7D%7D/test.html?a=commitdiff_plain;h=bfd1888150ed5345fb4552ccaa8f304ae4819980;p=plomrogue

Server: Remove uncommented lines.
---

diff --git a/src/server/field_of_view.c b/src/server/field_of_view.c
index c92c11a..afb25f5 100644
--- a/src/server/field_of_view.c
+++ b/src/server/field_of_view.c
@@ -23,9 +23,6 @@ enum wraps
     WRAP_W = 0x08
 };
 
-/* Transform "yx" to an index position in the world map. */
-//static uint16_t yx_to_pos(struct yx_uint8 * yx);
-
 /* Move "yx" into hex direction "d". If this moves "yx" beyond the minimal (0)
  * or maximal (UINT8_MAX) column or row, it wraps to the opposite side. Such
  * wrapping is returned as a wraps enum value and stored, so that further calls