From 43b5d868004496acfdf466f60bbb591b985b6327 Mon Sep 17 00:00:00 2001 From: dream-88 Date: Sat, 5 Mar 2016 19:00:37 +0100 Subject: [PATCH] Fixed bug #24496: story maps show all markers in journey trails again --- src/storyscreen/render.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/storyscreen/render.cpp b/src/storyscreen/render.cpp index 5e842c95787..b4670c37d5e 100644 --- a/src/storyscreen/render.cpp +++ b/src/storyscreen/render.cpp @@ -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_)