Skip to content

Commit

Permalink
Reenable xk maps
Browse files Browse the repository at this point in the history
  • Loading branch information
lw committed Apr 26, 2020
1 parent 26cadfd commit 10d0fb9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/beatmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,8 @@ static int parse_beatmap_token(char *key, char *value,
} else if (!(strcmp(key, "BeatmapSetID"))) {
meta->set_id = atoi(value);
} else if (!(strcmp(key, "CircleSize"))) {
// meta->columns = atoi(value);
// This worked with v12 and maybe also v13 but not with v14.
meta->columns = 4;
// This doesn't work for non-mania maps
meta->columns = atoi(value);
}

return 1;
Expand Down

0 comments on commit 10d0fb9

Please sign in to comment.