diff options
author | wwylele <wwylele@gmail.com> | 2017-01-21 10:53:03 +0100 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2017-03-01 22:30:57 +0100 |
commit | 38e800f70d122051e12ac9f22e23d84b97fec424 (patch) | |
tree | 0f52b5731a4fd8e9f2a39e8e75d1fa18ce8b9107 /src/citra_qt/config.h | |
parent | HID: use AnalogDevice (diff) | |
download | yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.tar yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.tar.gz yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.tar.bz2 yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.tar.lz yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.tar.xz yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.tar.zst yuzu-38e800f70d122051e12ac9f22e23d84b97fec424.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra_qt/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/config.h b/src/citra_qt/config.h index 79c901804..d7bf99442 100644 --- a/src/citra_qt/config.h +++ b/src/citra_qt/config.h @@ -4,6 +4,7 @@ #pragma once +#include <array> #include <string> #include <QVariant> #include "core/settings.h" @@ -23,5 +24,5 @@ public: void Reload(); void Save(); - static const std::array<QVariant, Settings::NativeInput::NUM_INPUTS> defaults; + static const std::array<int, Settings::NativeButton::NumButtons> default_buttons; }; |