OSDN Git Service

[Refactor] #39076 コメント削除.
authordeskull <deskull@users.sourceforge.jp>
Tue, 11 Jun 2019 13:34:52 +0000 (22:34 +0900)
committerdeskull <deskull@users.sourceforge.jp>
Tue, 11 Jun 2019 13:34:52 +0000 (22:34 +0900)
src/birth.c
src/cmd-dump.c
src/main-win.c

index ae69455..46165f7 100644 (file)
@@ -4351,12 +4351,10 @@ static bool player_birth_aux(void)
 
                if (autoroller || autochara) sound(SOUND_LEVEL);
 
-               /* Flush input */
                flush();
 
                /*** Display ***/
 
-               /* Mode */
                mode = 0;
 
                /* Roll for base hitpoints */
@@ -4378,7 +4376,6 @@ static bool player_birth_aux(void)
                        p_ptr->chp = p_ptr->mhp;
                        p_ptr->csp = p_ptr->msp;
 
-                       /* Display the player */
                        display_player(mode);
 
                        /* Prepare a prompt (must squeeze everything in) */
@@ -4392,7 +4389,6 @@ static bool player_birth_aux(void)
                        Term_addstr(-1, TERM_WHITE, _(", Enter この数値に決定", ", or Enter to accept"));
                        Term_addch(TERM_WHITE, b2);
 
-                       /* Prompt and get a command */
                        c = inkey();
 
                        /* Quit */
index 72357c9..754977d 100644 (file)
@@ -1051,8 +1051,6 @@ void do_cmd_player_status(void)
        while (1)
        {
                update_playtime();
-
-               /* Display the player */
                display_player(mode);
 
                if (mode == 4)
@@ -1067,8 +1065,6 @@ void do_cmd_player_status(void)
 
                /* Query */
                c = inkey();
-
-               /* Exit */
                if (c == ESCAPE) break;
 
                /* Change name */
@@ -2033,7 +2029,6 @@ void do_cmd_options(void)
                        if (!(skey & SKEY_MASK)) k = (char)skey;
                        else k = 0;
 
-                       /* Exit */
                        if (k == ESCAPE) break;
 
                        if (my_strchr("\n\r ", k))
@@ -2061,7 +2056,6 @@ void do_cmd_options(void)
                        if (!d) bell();
                }
 
-               /* Exit */
                if (k == ESCAPE) break;
 
                /* Analyze */
index 70b6aea..964a818 100644 (file)
@@ -3948,7 +3948,6 @@ static void process_menus(WORD wCmd)
                        break;
                }
 
-               /* Exit */
                case IDM_FILE_EXIT:
                {
                        if (game_in_progress && current_world_ptr->character_generated)
@@ -5428,7 +5427,6 @@ static void hack_quit(concptr str)
        /* Destroy the icon */
        if (hIcon) DestroyIcon(hIcon);
 
-       /* Exit */
        exit(0);
 }