summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-05-13 13:19:31 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-05-13 13:19:31 +0200
commit74d9f5e31428ef362033a63c10b781d943c5e5a5 (patch)
tree71e11ed620fa1d76577df07846e910970fe9210b /opentrack-compat
parent41a92ea7401c89c5696b3e1b2fa239458a92ff73 (diff)
many: remove unneeded implicit type conversion double <-> float
Diffstat (limited to 'opentrack-compat')
-rw-r--r--opentrack-compat/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack-compat/options.cpp b/opentrack-compat/options.cpp
index 550fec24..9dcb10ab 100644
--- a/opentrack-compat/options.cpp
+++ b/opentrack-compat/options.cpp
@@ -160,7 +160,7 @@ pbundle opt_singleton::bundle(const opt_singleton::k &key)
qDebug() << "bundle +" << key;
auto shr = std::make_shared<v>(key);
- implsgl_data[key] = tt(cnt(1), shr);
+ implsgl_data[key] = tt(1, shr);
return shr;
}