summaryrefslogtreecommitdiff
path: root/src/ecommon
diff options
context:
space:
mode:
Diffstat (limited to 'src/ecommon')
-rw-r--r--src/ecommon/init.c16
-rw-r--r--src/ecommon/init.h1
2 files changed, 17 insertions, 0 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c
index 372e5ad..d91792e 100644
--- a/src/ecommon/init.c
+++ b/src/ecommon/init.c
@@ -33,3 +33,19 @@ void commonClean(void)
aFree(mapindex->default_map);
mapindex->default_map = NULL;
}
+
+#define checkVar(name, value) \
+ if (name != value) \
+ { \
+ ShowError(#name" wrong value. Found %d but must be %d.\n", \
+ name, \
+ value); \
+ }
+
+void common_online(void)
+{
+ checkVar(MAX_SKILL, 1500);
+ checkVar(MAX_SKILL_ID, 10037);
+ checkVar(SC_MAX, 647);
+ checkVar(SI_MAX, 971);
+}
diff --git a/src/ecommon/init.h b/src/ecommon/init.h
index 8e17b08..72a2e8f 100644
--- a/src/ecommon/init.h
+++ b/src/ecommon/init.h
@@ -7,5 +7,6 @@
void interfaces_init_common(void);
void setDefaultMap(void);
void commonClean(void);
+void common_online(void);
#endif // EVOL_COMMON_INTERFACES