diff options
author | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-29 04:23:53 +0000 |
---|---|---|
committer | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-29 04:23:53 +0000 |
commit | 64222fdc35acf719398aee8581b5009439ac32d6 (patch) | |
tree | 2904c81a7d2a4b03d2a35073e94fcfb8196c5004 /src/map/map.c | |
parent | 6bf052b6b27325a808d16e3801d3bad8e271688c (diff) | |
download | hercules-64222fdc35acf719398aee8581b5009439ac32d6.tar.gz hercules-64222fdc35acf719398aee8581b5009439ac32d6.tar.bz2 hercules-64222fdc35acf719398aee8581b5009439ac32d6.tar.xz hercules-64222fdc35acf719398aee8581b5009439ac32d6.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@409 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/map/map.c b/src/map/map.c index 56e489639..4addd1a26 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1656,9 +1656,13 @@ int map_readallmap(void) { } free(waterlist); - printf("\rMaps Loaded: %d %60s\n",map_num,""); - printf("\rMaps Removed: %d \n",maps_removed); - + printf("\r"); + snprintf(tmp_output,sizeof(tmp_output),"Maps Loaded: \033[1;29m%d\033[0;0m %50s\n",map_num,""); + ShowInfo(tmp_output); + if (maps_removed) { + snprintf(tmp_output,sizeof(tmp_output),"Maps Removed: %d\n",maps_removed); + ShowNotice(tmp_output); + } return 0; } |