about summary refs log tree commit diff stats
path: root/src/ap_state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ap_state.cpp')
-rw-r--r--src/ap_state.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ap_state.cpp b/src/ap_state.cpp index 908c3a8..4ac0cce 100644 --- a/src/ap_state.cpp +++ b/src/ap_state.cpp
@@ -675,7 +675,9 @@ bool AP_IsPaintingShuffle() {
675 return GetState().painting_shuffle; 675 return GetState().painting_shuffle;
676} 676}
677 677
678const std::map<std::string, std::string>& AP_GetPaintingMapping() { 678std::map<std::string, std::string> AP_GetPaintingMapping() {
679 std::lock_guard state_guard(GetState().state_mutex);
680
679 return GetState().painting_mapping; 681 return GetState().painting_mapping;
680} 682}
681 683
@@ -685,7 +687,7 @@ bool AP_IsPaintingMappedTo(const std::string& painting_id) {
685 return GetState().painting_codomain.count(painting_id); 687 return GetState().painting_codomain.count(painting_id);
686} 688}
687 689
688const std::set<std::string>& AP_GetCheckedPaintings() { 690std::set<std::string> AP_GetCheckedPaintings() {
689 return GetState().GetCheckedPaintings(); 691 return GetState().GetCheckedPaintings();
690} 692}
691 693
@@ -778,7 +780,7 @@ bool AP_IsSunwarpShuffle() {
778 return GetState().sunwarp_shuffle; 780 return GetState().sunwarp_shuffle;
779} 781}
780 782
781const std::map<int, SunwarpMapping>& AP_GetSunwarpMapping() { 783std::map<int, SunwarpMapping> AP_GetSunwarpMapping() {
782 return GetState().sunwarp_mapping; 784 return GetState().sunwarp_mapping;
783} 785}
784 786