X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fserver%2Fmap_object_actions.c;h=a30809b33336dbea3695bd3d471f796cb111df7f;hb=0cc6c4ad7e0b01e2a89ced908f410eadf3f22b1f;hp=6f94ce18b410eb898f1450b7fe0f44babba12275;hpb=f9c94db47aa883149aa762fa128ac1ff1b3f92e1;p=plomrogue diff --git a/src/server/map_object_actions.c b/src/server/map_object_actions.c index 6f94ce1..a30809b 100644 --- a/src/server/map_object_actions.c +++ b/src/server/map_object_actions.c @@ -9,7 +9,7 @@ #include "../common/err_try_fgets.h" /* err_try_fgets(), err_line(), * reset_err_try_fgets_counter() */ -#include "../common/readwrite.h" /* textfile_sizes(), try_fopen(), try_fclose(), +#include "../common/readwrite.h" /* textfile_width(), try_fopen(), try_fclose(), * try_fgetc() */ #include "../common/rexit.h" /* exit_err(), exit_trouble() */ @@ -232,7 +232,7 @@ extern void init_map_object_actions() { char * f_name = "init_map_object_actions()"; FILE * file = try_fopen(world.path_map_obj_acts, "r", f_name); - uint32_t linemax = textfile_sizes(file, NULL); + uint32_t linemax = textfile_width(file); char line[linemax + 1]; struct MapObjAct ** moa_ptr_ptr = &world.map_obj_acts; char * context = "Failed reading map object actions config file. ";