diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-31 08:05:01 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-01-11 23:23:16 +0100 |
commit | 354130cd84b41ade9541fabc73f22144e6b521ce (patch) | |
tree | 1fed022f4efa042b8e0d47806315b6527dc120be /src/core | |
parent | core: hle: Add missing calls to MicroProfileOnThreadExit. (diff) | |
download | yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.tar yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.tar.gz yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.tar.bz2 yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.tar.lz yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.tar.xz yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.tar.zst yuzu-354130cd84b41ade9541fabc73f22144e6b521ce.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/arm/arm_interface.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 70098c526..9a0151736 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -26,9 +26,10 @@ using CPUInterrupts = std::array<CPUInterruptHandler, Core::Hardware::NUM_CPU_CO /// Generic ARMv8 CPU interface class ARM_Interface : NonCopyable { public: - explicit ARM_Interface(System& system_, CPUInterrupts& interrupt_handlers, bool uses_wall_clock) - : system{system_}, interrupt_handlers{interrupt_handlers}, uses_wall_clock{ - uses_wall_clock} {} + explicit ARM_Interface(System& system_, CPUInterrupts& interrupt_handlers_, + bool uses_wall_clock_) + : system{system_}, interrupt_handlers{interrupt_handlers_}, uses_wall_clock{ + uses_wall_clock_} {} virtual ~ARM_Interface() = default; struct ThreadContext32 { |