OSDN Git Service

[Refactor] #37353 セーブ/ロード処理一時フラグを save.h へ移動.
authordeskull <deskull@users.sourceforge.jp>
Wed, 5 Jun 2019 14:43:55 +0000 (23:43 +0900)
committerdeskull <deskull@users.sourceforge.jp>
Wed, 5 Jun 2019 14:43:55 +0000 (23:43 +0900)
src/defines.h
src/save.h

index 7392bdf..dc4689b 100644 (file)
 #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
index 236be3b..388c8e5 100644 (file)
@@ -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);