OSDN Git Service

[Refactor] #39076 do_cmd_knowledge_mutations() 内のコメント整理.
authordeskull <deskull@users.sourceforge.jp>
Sun, 30 Jun 2019 15:10:21 +0000 (00:10 +0900)
committerdeskull <deskull@users.sourceforge.jp>
Sun, 30 Jun 2019 15:10:21 +0000 (00:10 +0900)
src/mutation.c

index a30ed1e..964d973 100644 (file)
@@ -2025,14 +2025,10 @@ void do_cmd_knowledge_mutations(player_type *creature_ptr)
        FILE *fff;
        GAME_TEXT file_name[1024];
 
-       /* Open a new file */
        fff = my_fopen_temp(file_name, 1024);
-
-       /* Dump the mutations to file */
        if (fff) dump_mutations(creature_ptr, fff);
        my_fclose(fff);
 
-       /* Display the file contents */
        show_file(TRUE, file_name, _("突然変異", "Mutations"), 0, 0);
        fd_kill(file_name);
 }