diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-11 19:06:23 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-11 19:06:23 +0100 |
commit | 54ae60ffc0f16c982f625b246faa068297678a2b (patch) | |
tree | 57fa71220898c6f89b20250b5800437d5ccd4519 /tracker-pt/module.cpp | |
parent | fbd961775001228f6ffd9cc3bf09aa2de610aeae (diff) |
tracker/pt: also pass module name to camera class
Diffstat (limited to 'tracker-pt/module.cpp')
-rw-r--r-- | tracker-pt/module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/module.cpp b/tracker-pt/module.cpp index 0d96c351..d0f097b9 100644 --- a/tracker-pt/module.cpp +++ b/tracker-pt/module.cpp @@ -15,7 +15,7 @@ struct pt_module_traits final : pt_runtime_traits { std::unique_ptr<pt_camera> make_camera() const override { - return std::unique_ptr<pt_camera>(new Camera); + return std::unique_ptr<pt_camera>(new Camera(module_name)); } std::unique_ptr<pt_point_extractor> make_point_extractor() const override |