configure_cpu: Show/Hide debugging options
This commit is contained in:
parent
0193202964
commit
505aa3a4c1
7 changed files with 135 additions and 46 deletions
|
@ -382,6 +382,11 @@ enum class GPUAccuracy : u32 {
|
|||
Extreme = 2,
|
||||
};
|
||||
|
||||
enum class CPUAccuracy {
|
||||
Accurate = 0,
|
||||
DebugMode = 1,
|
||||
};
|
||||
|
||||
extern bool configuring_global;
|
||||
|
||||
template <typename Type>
|
||||
|
@ -428,6 +433,8 @@ struct Values {
|
|||
Setting<bool> use_multi_core;
|
||||
|
||||
// Cpu
|
||||
CPUAccuracy cpu_accuracy;
|
||||
|
||||
bool cpuopt_page_tables;
|
||||
bool cpuopt_block_linking;
|
||||
bool cpuopt_return_stack_buffer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue