summaryrefslogtreecommitdiff
path: root/src/gui/stats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/stats.h')
-rw-r--r--src/gui/stats.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/stats.h b/src/gui/stats.h
index 09ec8950..e6a2ee39 100644
--- a/src/gui/stats.h
+++ b/src/gui/stats.h
@@ -21,21 +21,21 @@
*/
-#ifndef __STATS_H
-#define __STATS_H
+#ifndef _STATS_H
+#define _STATS_H
#include <allegro.h>
#include "../main.h"
#include "gui.h"
-typedef struct CHAR_INFO {
+typedef struct {
int id;
char name[24];
short hp, max_hp, sp, max_sp, lv;
int xp, zeny, job_xp, job_lv;
short statp, skillp;
char STR, AGI, VIT, INT, DEX, LUK;
-};
+} PLAYER_INFO;
int charstats_display(CHAR_INFO *);