summaryrefslogtreecommitdiff
path: root/src/store_info_type.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-06-22 10:13:59 +0200
committerBardur Arantsson <bardur@scientician.net>2016-06-22 10:27:06 +0200
commite3cd14d9d6d0e90bae7864025e5b2865c045ef96 (patch)
treecb8aaebe606c82891aa4a673f4bc28da8a20647f /src/store_info_type.hpp
parent7bbfa3f27a97c6e0546f53a3254de38e513ed334 (diff)
Rework SF1_* flags to flag_set<>
Diffstat (limited to 'src/store_info_type.hpp')
-rw-r--r--src/store_info_type.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/store_info_type.hpp b/src/store_info_type.hpp
index 3923438f..a735fdfc 100644
--- a/src/store_info_type.hpp
+++ b/src/store_info_type.hpp
@@ -1,6 +1,7 @@
#pragma once
#include "h-basic.h"
+#include "store_flag_set.hpp"
/**
* Number of items to choose stock from
@@ -30,5 +31,5 @@ struct store_info_type
byte x_attr = 0; /* Desired building attribute */
char x_char = '\0'; /* Desired building character */
- u32b flags1 = 0; /* Flags */
+ store_flag_set flags; /* Flags */
};