Skip to content

Commit 1ed5324

Browse files
authored
Update dialog_chest.cpp
1 parent 6c6c1cb commit 1ed5324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fheroes2/dialog/dialog_chest.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ bool Dialog::SelectGoldOrExp( const std::string & header, const std::string & me
9797
text.draw( pos.x + sprite_gold.width() / 2 - text.width() / 2, pos.y + 4, display );
9898

9999
// sprite2
100-
pos.x = box.GetArea().x + box.GetArea().width / 2 + 30;
100+
pos.x = box.GetArea().x + box.GetArea().width / 2 + 32;
101101
fheroes2::Blit( sprite_expr, display, pos.x, pos.y - sprite_expr.height() );
102102
// text
103-
text.set( std::to_string( expr ) + " (" + _( "Need: " ) + std::to_string( Heroes::GetExperienceFromLevel( hero.GetLevel() ) - hero.GetExperience() ) + ")",
103+
text.set( std::to_string( expr ) + " (" + _( "XP Needed: " ) + std::to_string( Heroes::GetExperienceFromLevel( hero.GetLevel() ) - hero.GetExperience() ) + ")",
104104
fheroes2::FontType::smallWhite() );
105105
text.draw( pos.x + sprite_expr.width() / 2 - text.width() / 2, pos.y + 4, display );
106106

0 commit comments

Comments
 (0)