Removed debug messages

This commit is contained in:
Jesse van den Kieboom 2006-01-08 16:34:24 +00:00
parent 328f643a27
commit 1008a20471
1 changed files with 1 additions and 4 deletions

View File

@ -723,10 +723,7 @@ gm_world_parse_legacy_editing_start(GmWorld *world, gchar *line) {
einfo->is_editing = TRUE;
einfo->name = g_strndup(name_start + 6, (upload_start - name_start) - 6);
einfo->upload = g_strndup(upload_start + 9, (upload_start - line) + 9);
GM_DEBUG("Editing info: %s %s", einfo->name, einfo->upload);
einfo->upload = g_strndup(upload_start + 9, (upload_start - line) + 9);
einfo->lines = NULL;
}