mirror of
https://github.com/ARMSX2/ARMSX3.git
synced 2026-08-24 16:58:52 -07:00
12 lines
538 B
C
12 lines
538 B
C
#pragma once
|
|
|
|
enum class cfg_mode
|
|
{
|
|
custom, // Prefer regular custom config. Fall back to global config.
|
|
custom_selection, // Use user-selected custom config. Fall back to global config.
|
|
database_config, // Use database config. Fall back to global config.
|
|
config_override, // Use config override. This does not use the global VFS settings! Fall back to global config.
|
|
continuous, // Use same config as on last boot. Fall back to global config.
|
|
default_config // Use the default values of the config entries.
|
|
};
|