summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt/module.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-01-11 19:06:23 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-01-11 19:06:23 +0100
commit54ae60ffc0f16c982f625b246faa068297678a2b (patch)
tree57fa71220898c6f89b20250b5800437d5ccd4519 /tracker-pt/module.cpp
parentfbd961775001228f6ffd9cc3bf09aa2de610aeae (diff)
tracker/pt: also pass module name to camera class
Diffstat (limited to 'tracker-pt/module.cpp')
-rw-r--r--tracker-pt/module.cpp2
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