diff options
Diffstat (limited to 'src/gui/stats.cpp')
-rw-r--r-- | src/gui/stats.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gui/stats.cpp b/src/gui/stats.cpp index a24cedf1..2648ff91 100644 --- a/src/gui/stats.cpp +++ b/src/gui/stats.cpp @@ -22,16 +22,13 @@ */ #include "stats.h" -#include <iostream> - -extern PLAYER_INFO *char_info; char stats_name[48]; char stats_hp[24]; char stats_sp[24]; DIALOG stats_dialog[] = { - /* (dialog proc) (x) (y) (w) (h) (fg) (bg) (key) (flags) (d1) (d2) (dp) (dp2) (dp3) */ + /* (dialog proc) (x) (y) (w) (h) (fg) (bg) (key) (flags) (d1) (d2) (dp) (dp2) (dp3) */ { tmw_dialog_proc, 493, 0, 300, 55, 0, 0, 0, 0, 0, 0, stats_name, NULL, NULL }, { tmw_text_proc, 497, 22, 296, 100, 0, 0, 0, 0, 0, 0, stats_hp, NULL, NULL }, { tmw_text_proc, 497, 34, 296, 100, 0, 0, 0, 0, 0, 0, stats_sp, NULL, NULL }, @@ -39,7 +36,7 @@ DIALOG stats_dialog[] = { }; void update_stats_dialog() { - sprintf(stats_name, "%s Lvl:%i Job:%i", char_info->name, char_info->lv, char_info->job_lv); - sprintf(stats_hp, "HP %i / %i", char_info->hp, char_info->max_hp); - sprintf(stats_sp, "SP %i / %i", char_info->sp, char_info->max_sp); + sprintf(stats_name, "%s Lvl:% 2i Job:% 2i", char_info->name, char_info->lv, char_info->job_lv); + sprintf(stats_hp, "HP % 4d / % 4i", char_info->hp, char_info->max_hp); + sprintf(stats_sp, "SP % 4i / % 4i", char_info->sp, char_info->max_sp); } |