mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 12:39:59 +00:00
57a4a2ae0f
* Adds a new Hotkeys tab in the Controls group. * Double-click a Hotkey to rebind it.
16 lines
309 B
C++
16 lines
309 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "ui_settings.h"
|
|
|
|
namespace UISettings {
|
|
|
|
const Themes themes{{
|
|
{"Default", "default"},
|
|
{"Dark", "qdarkstyle"},
|
|
}};
|
|
|
|
Values values = {};
|
|
} // namespace UISettings
|