Skip to content
Permalink
Browse files
Fixed vitals not showing correctly on smaller screens.
  • Loading branch information
wlodarsb committed Mar 22, 2019
1 parent 7160126 commit 50b4c6362741972ddc1e2bf11ceaa1830e600a2a
Showing 1 changed file with 0 additions and 1 deletion.
@@ -454,7 +454,6 @@ void GameWindow::ShowVitals(vector<Hero> heroes)
for(Hero h : heroes)
{
GameWindow::Print(h.hero_name);
GameWindow::Print(" ");
GameWindow::Print(MakeBar(width-2, "HP", h.GetHP(), h.BaseHero()[0]));
GameWindow::Print(MakeBar(width-2, "SP", h.GetSP(), h.BaseHero()[1]));
GameWindow::Print(MakeBar(width-2, "MP", h.GetMP(), h.BaseHero()[2]));

0 comments on commit 50b4c63

Please sign in to comment.