diff options
author | german77 <juangerman-13@hotmail.com> | 2021-07-26 03:52:19 +0200 |
---|---|---|
committer | MonsterDruide1 <5958456@gmail.com> | 2021-09-18 23:23:03 +0200 |
commit | 75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8 (patch) | |
tree | a11be198f5f4933a68c8cc5cfc183e08c3b01fcb /src/input_common/main.cpp | |
parent | input_common/tas: new update method (diff) | |
download | yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.tar yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.tar.gz yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.tar.bz2 yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.tar.lz yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.tar.xz yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.tar.zst yuzu-75d8ec1e9f474ce6c2bfc0b8ebe574ca44f9f3d8.zip |
Diffstat (limited to 'src/input_common/main.cpp')
-rw-r--r-- | src/input_common/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index 3b9906b53..18d7d8817 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp @@ -117,7 +117,7 @@ struct InputSubsystem::Impl { Common::ParamPackage{{"display", "Keyboard/Mouse"}, {"class", "keyboard"}}, }; if (Settings::values.tas_enable) { - devices.push_back( + devices.emplace_back( Common::ParamPackage{{"display", "TAS Controller"}, {"class", "tas"}}); } #ifdef HAVE_SDL2 |