diff --git a/changelog.md b/changelog.md index a2893080a810..8b88a13fed0b 100644 --- a/changelog.md +++ b/changelog.md @@ -102,6 +102,7 @@ * Fixed some MP passwords being saved incorrectly (issue #2745) * Fixed sometimes being unable to join MP games with non-required eras. * Fixed locations not being added to the palette when loading a map (#1023) + * Utilized 2x xBRZ scaling for portraitless units in game dialog. ## Version 1.13.12 ### Security fixes diff --git a/src/units/unit.cpp b/src/units/unit.cpp index 431325b905ec..931829b23acb 100644 --- a/src/units/unit.cpp +++ b/src/units/unit.cpp @@ -1015,7 +1015,7 @@ std::string unit::big_profile() const return profile_; } - return absolute_image(); + return absolute_image() + "~XBRZ(2)"; } std::string unit::small_profile() const