X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmain.c;h=12b8ca52f15528997c2af90520a4668df48d5a32;hb=6f9c0f49233065ed1ce0bae8862902e3cead639e;hp=0cdcaf16293db6472075f472c6ac09aacf29b1a9;hpb=ec5c4edd169be8fe8c778cabdfc7ada665629ffd;p=plomrogue diff --git a/src/main.c b/src/main.c index 0cdcaf1..12b8ca5 100644 --- a/src/main.c +++ b/src/main.c @@ -15,7 +15,7 @@ */ #include "keybindings.h" /* for init_keybindings(), get_action_key() */ #include "readwrite.h" /* for [read/write]_uint[8/16/32][_bigendian](), - * try_fopen(), try_fclose(), try_fclose_unlink_renmae() + * try_fopen(), try_fclose(), try_fclose_unlink_rename() */ #include "map_objects.h" /* for structs Monster, Item, Player, * init_map_object_defs(), read_map_objects(), @@ -123,8 +123,8 @@ int main(int argc, char *argv[]) /* For non-interactive mode, try to load world state from record file. */ else { - err_r = "Trouble reading from 'record' file (read_uint32_bigendian() in " - "main())."; + err_r = "Trouble reading from 'record' file (read_uint32_bigendian() " + "in main())."; if (0 == world.interactive) { file = try_fopen(recordfile, "r", &world, f_name);