From 9a44c53fe29bc07eebd975a900f404ed5eaf9819 Mon Sep 17 00:00:00 2001 From: deskull Date: Mon, 22 Jul 2019 23:42:08 +0900 Subject: [PATCH] =?utf8?q?[Refactor]=20#39077=20=E5=9E=8B=E3=81=AE?= =?utf8?q?=E7=BD=AE=E6=8F=9B=EF=BC=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/cmd-basic.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/cmd-basic.c b/src/cmd-basic.c index e2f7171ff..0eae26939 100644 --- a/src/cmd-basic.c +++ b/src/cmd-basic.c @@ -1743,9 +1743,10 @@ static bool do_cmd_bash_aux(POSITION y, POSITION x, DIRECTION dir) */ void do_cmd_bash(player_type *creature_ptr) { - int y, x, dir; - grid_type *g_ptr; - bool more = FALSE; + POSITION y, x; + DIRECTION dir; + grid_type *g_ptr; + bool more = FALSE; if (creature_ptr->wild_mode) return; -- 2.11.0