diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 10:50:34 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 10:50:34 +0200 |
commit | 9513abbb0a0fcc9a1bf52eb320e015ba81856bf1 (patch) | |
tree | bcefe6fcd9d9a4ddd410d8ec0aa411a80796fc40 /src/core | |
parent | Removed reference to core timing to nvflinger and used system instead (diff) | |
download | yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.tar yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.tar.gz yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.tar.bz2 yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.tar.lz yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.tar.xz yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.tar.zst yuzu-9513abbb0a0fcc9a1bf52eb320e015ba81856bf1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/hid/controllers/controller_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/controller_base.cpp b/src/core/hle/service/hid/controllers/controller_base.cpp index 2ea9b78d8..8091db9d7 100644 --- a/src/core/hle/service/hid/controllers/controller_base.cpp +++ b/src/core/hle/service/hid/controllers/controller_base.cpp @@ -6,7 +6,7 @@ namespace Service::HID { -ControllerBase::ControllerBase(Core::System& system) : system(system){}; +ControllerBase::ControllerBase(Core::System& system) : system(system) {} ControllerBase::~ControllerBase() = default; void ControllerBase::ActivateController() { |