Merge pull request #619 from dreamer-88/fix#24496
Fixed bug #24496: story maps show all markers in journey trails again
This commit is contained in:
commit
30f42b77bf
1 changed files with 6 additions and 2 deletions
|
@ -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_)
|
||||
|
|
Loading…
Add table
Reference in a new issue