diff options
Diffstat (limited to 'logic')
| -rw-r--r-- | logic/state.cpp | 3 | ||||
| -rw-r--r-- | logic/state.hpp | 1 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/logic/state.cpp b/logic/state.cpp index 8218e5c3..dc5e5a36 100644 --- a/logic/state.cpp +++ b/logic/state.cpp @@ -22,7 +22,8 @@ std::tuple<dylib_ptr, int> State::module_by_name(const QString& name, dylib_list  State::State(const QString& library_path) :      modules(library_path), -    pose(s.all_axis_opts) +    pose(s.all_axis_opts), +    library_path{library_path}  {}  dylib_ptr State::current_tracker() diff --git a/logic/state.hpp b/logic/state.hpp index 809ca458..7fc06a5c 100644 --- a/logic/state.hpp +++ b/logic/state.hpp @@ -35,4 +35,5 @@ struct OTR_LOGIC_EXPORT State      module_settings m;      Mappings pose;      std::shared_ptr<Work> work; +    QString library_path;  }; | 
