diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-13 12:53:11 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-13 12:53:11 +0000 |
commit | 3b1dd44c88484af3585bcfea0e94994330383019 (patch) | |
tree | 00e0c8cee3d8329079e6c5e93b6337c6567ac28a /src/common | |
parent | 9d1b39d3facc6d9f1268e036e7b23bd410c683ec (diff) | |
download | hercules-3b1dd44c88484af3585bcfea0e94994330383019.tar.gz hercules-3b1dd44c88484af3585bcfea0e94994330383019.tar.bz2 hercules-3b1dd44c88484af3585bcfea0e94994330383019.tar.xz hercules-3b1dd44c88484af3585bcfea0e94994330383019.zip |
* Cleaned up command @users/#users:
- displays everything on the target user (self for @users)
- uses a static array instead of a temporary DBMap
- displays percentages with precision of 0.01%
- uses safesnprintf instead of sprintf
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13446 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mapindex.c | 2 | ||||
-rw-r--r-- | src/common/mapindex.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mapindex.c b/src/common/mapindex.c index b76a838be..4aef69574 100644 --- a/src/common/mapindex.c +++ b/src/common/mapindex.c @@ -11,8 +11,6 @@ #include <stdio.h> #include <stdlib.h> -#define MAX_MAPINDEX 2000 - struct _indexes { char name[MAP_NAME_LENGTH]; //Stores map name } indexes[MAX_MAPINDEX]; diff --git a/src/common/mapindex.h b/src/common/mapindex.h index 3a9ff3537..cd4c09d37 100644 --- a/src/common/mapindex.h +++ b/src/common/mapindex.h @@ -10,6 +10,8 @@ extern char mapindex_cfgfile[80]; //whether to enable auto-adding of maps during run. Not so secure as the map indexes will vary! //#define MAPINDEX_AUTOADD +#define MAX_MAPINDEX 2000 + //Some definitions for the mayor city maps. #define MAP_PRONTERA "prontera" #define MAP_GEFFEN "geffen" |