summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/map.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map.c b/src/map.c
index 6dd1a28..16acc93 100644
--- a/src/map.c
+++ b/src/map.c
@@ -281,7 +281,8 @@ map_new_from_file (const gchar *map_file, gint num_rows, gint num_cols)
if (stream != NULL)
{
- map = MAP (g_object_new (map_get_type (), "size", &size, NULL));
+ /*map = MAP (g_object_new (map_get_type (), "size", &size, NULL));*/
+ map = MAP(g_object_new (map_get_type(), "size", &size, NULL));
fload_map (map, stream);
fclose (stream);
cleanup_map (map);