diff options
Diffstat (limited to 'src/tracker_frame.h')
-rw-r--r-- | src/tracker_frame.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tracker_frame.h b/src/tracker_frame.h index 131c7b8..8eb4465 100644 --- a/src/tracker_frame.h +++ b/src/tracker_frame.h | |||
@@ -8,6 +8,7 @@ | |||
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | #include <memory> | 10 | #include <memory> |
11 | #include <set> | ||
11 | 12 | ||
12 | #include "ap_state.h" | 13 | #include "ap_state.h" |
13 | #include "icons.h" | 14 | #include "icons.h" |
@@ -55,7 +56,7 @@ struct StateUpdate { | |||
55 | bool achievements = false; | 56 | bool achievements = false; |
56 | bool open_panels_tab = false; | 57 | bool open_panels_tab = false; |
57 | bool cleared_locations = false; | 58 | bool cleared_locations = false; |
58 | bool hunt_panels = false; | 59 | std::set<int> panels; |
59 | bool player_position = false; | 60 | bool player_position = false; |
60 | bool changed_settings = false; | 61 | bool changed_settings = false; |
61 | }; | 62 | }; |