diff options
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 + } }; } |