summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/input.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/input.h b/src/common/input.h
index cb30b7254..4030ad2e5 100644
--- a/src/common/input.h
+++ b/src/common/input.h
@@ -417,12 +417,12 @@ std::unique_ptr<InputDeviceType> CreateDeviceFromString(const std::string& param
417} 417}
418 418
419/** 419/**
420 * Create an input device from given paramters. 420 * Create an input device from given parameters.
421 * @tparam InputDeviceType the type of input devices to create 421 * @tparam InputDeviceType the type of input devices to create
422 * @param A ParamPackage that contains all parameters for creating the device 422 * @param package A ParamPackage that contains all parameters for creating the device
423 */ 423 */
424template <typename InputDeviceType> 424template <typename InputDeviceType>
425std::unique_ptr<InputDeviceType> CreateDevice(const Common::ParamPackage package) { 425std::unique_ptr<InputDeviceType> CreateDevice(const ParamPackage& package) {
426 const std::string engine = package.Get("engine", "null"); 426 const std::string engine = package.Get("engine", "null");
427 const auto& factory_list = Impl::FactoryList<InputDeviceType>::list; 427 const auto& factory_list = Impl::FactoryList<InputDeviceType>::list;
428 const auto pair = factory_list.find(engine); 428 const auto pair = factory_list.find(engine);