summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Baldeck <alexander@archlinux.org>2004-10-03 11:58:18 +0000
committerAlexander Baldeck <alexander@archlinux.org>2004-10-03 11:58:18 +0000
commit61b5df437b2d53e6bd782eaa845b0cd4bb23629e (patch)
tree4e5de71c9eb192795712e6a288f65655b3d33b27
parent1c0e43d3b05ae25c1d15d11f4087d878dec40eb6 (diff)
downloadmana-client-61b5df437b2d53e6bd782eaa845b0cd4bb23629e.tar.gz
mana-client-61b5df437b2d53e6bd782eaa845b0cd4bb23629e.tar.bz2
mana-client-61b5df437b2d53e6bd782eaa845b0cd4bb23629e.tar.xz
mana-client-61b5df437b2d53e6bd782eaa845b0cd4bb23629e.zip
*** empty log message ***
-rw-r--r--src/gui/stats.cpp11
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);
}