X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=src%2Fclient%2Fmisc.c;h=fcb53ecf1e6f4423c89ebeeb64cbe6a74578c568;hb=0cc6c4ad7e0b01e2a89ced908f410eadf3f22b1f;hp=4af2bebe4e41db1423ebef39a9cf330239cb71e7;hpb=b8783b73fc84895bca8bf02b2604c3b1178bc7d3;p=plomrogue diff --git a/src/client/misc.c b/src/client/misc.c index 4af2beb..fcb53ec 100644 --- a/src/client/misc.c +++ b/src/client/misc.c @@ -2,14 +2,13 @@ #include "misc.h" #include /* delwin() */ -#include /* NULL */ #include /* uint8_t, uint32_t */ #include /* FILE, sprintf() */ #include /* free(), exit() */ #include /* memcpy(), strlen() */ #include /* global optarg, getopt() */ #include "../common/err_try_fgets.h" /* reset_err_try_fgets_counter() */ -#include "../common/readwrite.h" /* try_fopen(), try_fclose(), textfile_sizes(), +#include "../common/readwrite.h" /* try_fopen(), try_fclose(), textfile_width(), * try_fclose_unlink_rename(), */ #include "../common/rexit.h" /* exit_err() */ @@ -18,7 +17,7 @@ #include "keybindings.h" /* free_keybindings(), read_keybindings_from_file(), * write_keybindings_to_file() */ -#include "map_window.h" /* map_center() */ +#include "map.h" /* map_center() */ #include "windows.h" /* free_winDB(), make_v_screen_and_init_win_sizes(), * read_winconf_from_file(), write_winconf_of_id_to_file(), * toggle_window() @@ -73,7 +72,7 @@ extern void load_interface_conf() /* Read keybindings and WincConf DB from interface config file. */ reset_err_try_fgets_counter(); FILE * file = try_fopen(world.path_interface, "r", f_name); - uint32_t linemax = textfile_sizes(file, NULL); + uint32_t linemax = textfile_width(file); char line[linemax + 1]; read_keybindings_from_file(line, linemax, file, &world.kb_global); read_keybindings_from_file(line, linemax, file, &world.kb_wingeom);