From 26f04847db352f5d29d9b7eea775b51c5e776757 Mon Sep 17 00:00:00 2001 From: Deskull Date: Thu, 17 Jan 2019 21:43:53 +0900 Subject: [PATCH] =?utf8?q?[Refactor]=20#37353=20=E5=9E=8B=E3=81=AE?= =?utf8?q?=E7=BD=AE=E6=8F=9B(next=5Fmirror())=20/=20Type=20replacement.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/spells1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spells1.c b/src/spells1.c index 04045144d..574df6e5e 100644 --- a/src/spells1.c +++ b/src/spells1.c @@ -119,9 +119,9 @@ PERCENTAGE beam_chance(void) * @param cury 現在の鏡のy座標 * @param curx 現在の鏡のx座標 */ -static void next_mirror(int* next_y, int* next_x, int cury, int curx) +static void next_mirror(POSITION* next_y, POSITION* next_x, POSITION cury, POSITION curx) { - int mirror_x[10], mirror_y[10]; /* 鏡はもっと少ない */ + POSITION mirror_x[10], mirror_y[10]; /* 鏡はもっと少ない */ int mirror_num = 0; /* 鏡の数 */ POSITION x, y; int num; -- 2.11.0