From 3d6e372f96228fca0dfb17dc8b058af9088beefb Mon Sep 17 00:00:00 2001 From: Hamish Milne Date: Mon, 30 Dec 2019 17:02:44 +0000 Subject: [PATCH] More clang format fixes. Really need to standardise the version of this --- src/core/hle/service/ir/extra_hid.h | 2 +- src/core/hle/service/ir/ir_user.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/hle/service/ir/extra_hid.h b/src/core/hle/service/ir/extra_hid.h index 7924a1e12..1be403167 100644 --- a/src/core/hle/service/ir/extra_hid.h +++ b/src/core/hle/service/ir/extra_hid.h @@ -71,7 +71,7 @@ private: template void serialize(Archive& ar, const unsigned int) { ar& hid_period; - ar& calibration_data; // This isn't writeable for now, but might be in future + ar& calibration_data; // This isn't writeable for now, but might be in future RequestInputDevicesReload(); // zl, zr, c_stick are loaded here } friend class boost::serialization::access; diff --git a/src/core/hle/service/ir/ir_user.cpp b/src/core/hle/service/ir/ir_user.cpp index fd6c1b905..64a298103 100644 --- a/src/core/hle/service/ir/ir_user.cpp +++ b/src/core/hle/service/ir/ir_user.cpp @@ -23,8 +23,8 @@ void IR_USER::serialize(Archive& ar, const unsigned int) { ar& receive_event; ar& shared_memory; ar& connected_device; - ar& *receive_buffer.get(); - ar& *extra_hid.get(); + ar&* receive_buffer.get(); + ar&* extra_hid.get(); } SERIALIZE_IMPL(IR_USER)