configuration: Add cpu_core configuration option
This commit is contained in:
parent
d2fbc78320
commit
b628192bf2
8 changed files with 40 additions and 16 deletions
|
@ -72,6 +72,11 @@ static const std::array<const char*, NumAnalogs> mapping = {{
|
|||
}};
|
||||
} // namespace NativeAnalog
|
||||
|
||||
enum class CpuCore {
|
||||
Unicorn,
|
||||
Dynarmic,
|
||||
};
|
||||
|
||||
struct Values {
|
||||
// CheckNew3DS
|
||||
bool is_new_3ds;
|
||||
|
@ -83,7 +88,7 @@ struct Values {
|
|||
std::string touch_device;
|
||||
|
||||
// Core
|
||||
bool use_cpu_jit;
|
||||
CpuCore cpu_core;
|
||||
|
||||
// Data Storage
|
||||
bool use_virtual_sd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue