diff options
author | Bradley Smith | 2008-03-08 22:29:37 +0000 |
---|---|---|
committer | Bradley Smith | 2008-03-08 22:29:37 +0000 |
commit | 62519f6110b60084ebfda126f6678e4db2b54c17 (patch) | |
tree | 84d1647e28da06ef459516de80e523a2f70f40b0 /src | |
parent | Add changelog entry. (diff) | |
download | gnurobots-62519f6110b60084ebfda126f6678e4db2b54c17.tar.gz |
Correct Map and X11_Plugin types, and correct copyrights.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/map.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |