OSDN Git Service

Merge branch 'master' into For2.2.2-Refactoring
authordeskull <deskull@users.sourceforge.jp>
Wed, 10 Apr 2019 10:56:08 +0000 (19:56 +0900)
committerdeskull <deskull@users.sourceforge.jp>
Wed, 10 Apr 2019 10:56:08 +0000 (19:56 +0900)
src/variable.c

index a3142a2..5668b7b 100644 (file)
@@ -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
  */