diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-24 17:37:48 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-24 17:37:48 +0100 |
commit | 12e7d3b254828fcaf2dda3906ae0e80723eeffa4 (patch) | |
tree | 687d3011fcc27e33d33fd3f3e2c79a2b85f2d054 /src/input_common | |
parent | input_common/main: Pass MappingData by const reference in callbacks (diff) | |
download | yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.tar yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.tar.gz yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.tar.bz2 yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.tar.lz yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.tar.xz yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.tar.zst yuzu-12e7d3b254828fcaf2dda3906ae0e80723eeffa4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/input_mapping.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/input_mapping.cpp b/src/input_common/input_mapping.cpp index 475257f42..38bf47575 100644 --- a/src/input_common/input_mapping.cpp +++ b/src/input_common/input_mapping.cpp @@ -9,7 +9,7 @@ namespace InputCommon { -MappingFactory::MappingFactory() {} +MappingFactory::MappingFactory() = default; void MappingFactory::BeginMapping(Polling::InputType type) { is_enabled = true; |