mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Allow restoring only settings, recents or controls to defaults.
Fixes #16381 , though could make even more granular later. The only translation change was deleting one sentence from a longer string - used Google Translate to assist me in removing the correct part for a few of them, most were obvious. Hope they're all right.
This commit is contained in:
@@ -66,6 +66,13 @@ enum class GPUBackend {
|
||||
VULKAN = 3,
|
||||
};
|
||||
|
||||
enum class RestoreSettingsBits : int {
|
||||
SETTINGS = 1,
|
||||
CONTROLS = 2,
|
||||
RECENT = 4,
|
||||
};
|
||||
ENUM_CLASS_BITOPS(RestoreSettingsBits);
|
||||
|
||||
inline std::string GPUBackendToString(GPUBackend backend) {
|
||||
switch (backend) {
|
||||
case GPUBackend::OPENGL:
|
||||
|
||||
Reference in New Issue
Block a user