Skip to content

Commit

Permalink
Fix: View is also complete when 'tilesChanged'
Browse files Browse the repository at this point in the history
- it means that new tiles were available for rendering
  • Loading branch information
hjanetzek committed Nov 21, 2018
1 parent 98ca1fc commit 23dc73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ bool Map::update(float _dt) {
bool tilesLoading = impl->tileManager.hasLoadingTiles();
bool labelsNeedUpdate = impl->labels.needUpdate();

if (viewChanged || tilesChanged || tilesLoading || labelsNeedUpdate || impl->sceneLoadTasks > 0) {
if (viewChanged || tilesLoading || labelsNeedUpdate || impl->sceneLoadTasks > 0) {
viewComplete = false;
}

Expand Down

0 comments on commit 23dc73b

Please sign in to comment.