Skip to content

Commit

Permalink
Merge pull request #619 from dreamer-88/fix#24496
Browse files Browse the repository at this point in the history
Fixed bug #24496: story maps show all markers in journey trails again
  • Loading branch information
Vultraz committed Mar 5, 2016
2 parents e959436 + 43b5d86 commit 30f42b7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/storyscreen/render.cpp
Expand Up @@ -383,8 +383,12 @@ bool part_ui::render_floating_images()

if(!ri.image.null()) {
render_background();
sdl_blit(ri.image, NULL, video_.getSurface(), &ri.rect);
update_rect(ri.rect);
for (size_t i = 0; i <= fi_n; i++)
{
floating_image::render_input& old_ri = imgs_[i];
sdl_blit(old_ri.image, NULL, video_.getSurface(), &old_ri.rect);
update_rect(old_ri.rect);
}
}

if (!skip_)
Expand Down

0 comments on commit 30f42b7

Please sign in to comment.