OSDN Git Service

[Refactor] #3547 鉄獄100Fがムーンサイド状態になっていた不具合を修正した
authorHourier <66951241+Hourier@users.noreply.github.com>
Fri, 14 Jul 2023 12:12:38 +0000 (21:12 +0900)
committerHourier <66951241+Hourier@users.noreply.github.com>
Fri, 14 Jul 2023 12:12:38 +0000 (21:12 +0900)
勝利メッセージ確定のyes/no が反転していた

src/cmd-action/cmd-others.cpp

index 5fc878c..f864fb1 100644 (file)
@@ -155,7 +155,7 @@ static void accept_winner_message(PlayerType *player_ptr)
             continue;
         }
 
-        if (!input_check_strict(player_ptr, _("よろしいですか?", "Are you sure? "), UserCheck::NO_HISTORY)) {
+        if (input_check_strict(player_ptr, _("よろしいですか?", "Are you sure? "), UserCheck::NO_HISTORY)) {
             break;
         }
     }