Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
only log tile errors if not obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
incanus committed Feb 26, 2014
1 parent 0afc5f6 commit 0782cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map/tile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void Tile::request() {
tile->state = Tile::loaded;
tile->data.swap(res.body);
tile->parse();
} else {
} else if (tile->state != obsolete) {
fprintf(stderr, "tile loading failed\n");
}
}, []() {
Expand Down

0 comments on commit 0782cfc

Please sign in to comment.