mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 09:09:58 +00:00
core/arm: increase minimum_run_cycles
This commit is contained in:
parent
30e8876ea4
commit
d657ea69c9
2 changed files with 2 additions and 2 deletions
|
@ -161,7 +161,7 @@ public:
|
|||
Core::Memory::Memory& memory;
|
||||
std::size_t num_interpreted_instructions{};
|
||||
bool debugger_enabled{};
|
||||
static constexpr u64 minimum_run_cycles = 1000U;
|
||||
static constexpr u64 minimum_run_cycles = 10000U;
|
||||
};
|
||||
|
||||
std::shared_ptr<Dynarmic::A32::Jit> ARM_Dynarmic_32::MakeJit(Common::PageTable* page_table) const {
|
||||
|
|
|
@ -209,7 +209,7 @@ public:
|
|||
u64 tpidrro_el0 = 0;
|
||||
u64 tpidr_el0 = 0;
|
||||
bool debugger_enabled{};
|
||||
static constexpr u64 minimum_run_cycles = 1000U;
|
||||
static constexpr u64 minimum_run_cycles = 10000U;
|
||||
};
|
||||
|
||||
std::shared_ptr<Dynarmic::A64::Jit> ARM_Dynarmic_64::MakeJit(Common::PageTable* page_table,
|
||||
|
|
Loading…
Reference in a new issue