From 5142a65127df3a5867cc885b29e2b06e4d68def0 Mon Sep 17 00:00:00 2001 From: DracoRPG Date: Mon, 16 Apr 2007 00:14:32 +0000 Subject: Small bugfixes and enhancements to the map cache generator git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10267 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/tool/grfio.c | 9 ++++++--- src/tool/mapcache.c | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'src/tool') diff --git a/src/tool/grfio.c b/src/tool/grfio.c index b02563ce7..bee3e8e26 100644 --- a/src/tool/grfio.c +++ b/src/tool/grfio.c @@ -648,9 +648,10 @@ static int grfio_entryread(char *gfname,int gentry) fp = fopen(gfname, "rb"); if (fp == NULL) { - printf("GRF data file not found: '%s'.\n",gfname); + printf("GRF data file not found: '%s'\n",gfname); return 1; // 1:not found error - } + } else + printf("GRF data file found: '%s'\n",gfname); fseek(fp,0,2); // SEEK_END grf_size = ftell(fp); @@ -961,8 +962,10 @@ void grfio_init(char *fname) // Entry table reading if(strcmp(w1, "grf") == 0) // GRF file grf_num += (grfio_add(w2) == 0); - else if(strcmp(w1,"data_dir") == 0) // Data directory + else if(strcmp(w1,"data_dir") == 0) { // Data directory strcpy(data_dir, w2); + printf("Use data directory %s\n", w2); + } } fclose(data_conf); } // end of reading grf-files.txt diff --git a/src/tool/mapcache.c b/src/tool/mapcache.c index 133cfe0ed..4103e6916 100644 --- a/src/tool/mapcache.c +++ b/src/tool/mapcache.c @@ -310,6 +310,7 @@ int main(int argc, char *argv[]) if(strcmp("map:", name) == 0 && sscanf(line, "%*s %15s", name) < 1) continue; + name[MAP_NAME_LENGTH_EXT-1] = '\0'; remove_extension(name); printf("%s", name); if(find_map(name)) -- cgit v1.2.3-60-g2f50