From 503b3da6d40af158ee07fa19a7605b9b0876ab9b Mon Sep 17 00:00:00 2001 From: deskull Date: Wed, 5 Jun 2019 23:43:55 +0900 Subject: [PATCH] =?utf8?q?[Refactor]=20#37353=20=E3=82=BB=E3=83=BC?= =?utf8?q?=E3=83=96/=E3=83=AD=E3=83=BC=E3=83=89=E5=87=A6=E7=90=86=E4=B8=80?= =?utf8?q?=E6=99=82=E3=83=95=E3=83=A9=E3=82=B0=E3=82=92=20save.h=20?= =?utf8?q?=E3=81=B8=E7=A7=BB=E5=8B=95=EF=BC=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/defines.h | 6 ------ src/save.h | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/defines.h b/src/defines.h index 7392bdfbd..dc4689ba9 100644 --- a/src/defines.h +++ b/src/defines.h @@ -254,12 +254,6 @@ #define DUNGEON_FEAT_PROB_NUM 3 /* - * Flags for save/load temporal saved floor file - */ -#define SLF_SECOND 0x0001 /* Called from another save/load function */ -#define SLF_NO_KILL 0x0002 /* Don't kill temporal files */ - -/* * Max numbers of macro trigger names */ #define MAX_MACRO_MOD 12 diff --git a/src/save.h b/src/save.h index 236be3bc6..388c8e5d0 100644 --- a/src/save.h +++ b/src/save.h @@ -1,5 +1,11 @@ #pragma once +/* + * Flags for save/load temporal saved floor file + */ +#define SLF_SECOND 0x0001 /* Called from another save/load function */ +#define SLF_NO_KILL 0x0002 /* Don't kill temporal files */ + /* save.c */ extern bool save_player(void); extern bool load_player(void); -- 2.11.0