diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-06-28 23:51:26 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-06-28 23:51:26 +0200 |
commit | 44381c09d79ca24ac7ea993c43cc2f52a6e151fe (patch) | |
tree | 8d952d350ab548eb30c50a7b959180244a76f26f /application | |
parent | bb599abf59a937e76b650825ba145687914a9ce8 (diff) | |
download | MultiMC-44381c09d79ca24ac7ea993c43cc2f52a6e151fe.tar MultiMC-44381c09d79ca24ac7ea993c43cc2f52a6e151fe.tar.gz MultiMC-44381c09d79ca24ac7ea993c43cc2f52a6e151fe.tar.lz MultiMC-44381c09d79ca24ac7ea993c43cc2f52a6e151fe.tar.xz MultiMC-44381c09d79ca24ac7ea993c43cc2f52a6e151fe.zip |
NOISSUE more warnings
Diffstat (limited to 'application')
-rw-r--r-- | application/KonamiCode.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/application/KonamiCode.cpp b/application/KonamiCode.cpp index 07c285bc..e313a856 100644 --- a/application/KonamiCode.cpp +++ b/application/KonamiCode.cpp @@ -6,11 +6,13 @@ namespace { const std::array<Qt::Key, 10> konamiCode = { - Qt::Key_Up, Qt::Key_Up, - Qt::Key_Down, Qt::Key_Down, - Qt::Key_Left, Qt::Key_Right, - Qt::Key_Left, Qt::Key_Right, - Qt::Key_B, Qt::Key_A + { + Qt::Key_Up, Qt::Key_Up, + Qt::Key_Down, Qt::Key_Down, + Qt::Key_Left, Qt::Key_Right, + Qt::Key_Left, Qt::Key_Right, + Qt::Key_B, Qt::Key_A + } }; } |