Fixture scheduling bugfix.

This commit is contained in:
gyboth 2008-12-28 10:31:06 +00:00
parent 7324c289cc
commit 3919e51861
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ xml_league_read_start_element (GMarkupParseContext *context,
if(attribute_names[0] != NULL && strcmp(attribute_names[0], ATT_DEF_NAME_WEEK_BREAK_LENGTH) == 0)
new_week_break.length = (gint)g_ascii_strtod(attribute_values[0], NULL);
else
new_week_break.length = -1;
new_week_break.length = -1000;
g_array_append_val(new_league.week_breaks, new_week_break);
}