From 649a1e1e181b14d86c78ec4069b9f8c7082a4e66 Mon Sep 17 00:00:00 2001 From: deskull Date: Wed, 10 Apr 2019 19:50:13 +0900 Subject: [PATCH] =?utf8?q?[fix]=20#37353=20"floor"=20=E5=A4=89=E6=95=B0?= =?utf8?q?=E3=81=8C=E3=83=AA=E3=83=AA=E3=83=BC=E3=82=B9=E3=83=93=E3=83=AB?= =?utf8?q?=E3=83=89=E6=99=82=E3=81=AEmath.h=E3=81=A8=E9=87=8D=E8=A4=87?= =?utf8?q?=E3=81=97=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=81=A7=E4=BF=AE?= =?utf8?q?=E6=AD=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/variable.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/variable.c b/src/variable.c index a3142a21e..5668b7bee 100644 --- a/src/variable.c +++ b/src/variable.c @@ -435,32 +435,28 @@ const concptr angband_music_basic_name[MUSIC_BASIC_MAX] = * Not completely allocated, that would be inefficient * Not completely hardcoded, that would overflow memory */ -floor_type floor; -floor_type *current_floor_ptr = &floor; +floor_type floor_info; +floor_type *current_floor_ptr = &floor_info; /* * The array of saved floors */ saved_floor_type saved_floors[MAX_SAVED_FLOORS]; - /* * Number of floor_id used from birth */ FLOOR_IDX max_floor_id; - world_type world; world_type *current_world_ptr = &world; - /* * Sign for current process used in temporal files. * Actually it is the start time of current process. */ u32b saved_floor_file_sign; - /* * Maximum number of towns */ -- 2.11.0