From 0d0826f71bb4742b31a8c9c84c830b13cbf36a48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Wed, 16 Jun 2021 23:40:18 +0200 Subject: [PATCH] Fix lint issue --- src/KingSystem/Event/evtActorBinding.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/KingSystem/Event/evtActorBinding.h b/src/KingSystem/Event/evtActorBinding.h index e36ae448..17f956b9 100644 --- a/src/KingSystem/Event/evtActorBinding.h +++ b/src/KingSystem/Event/evtActorBinding.h @@ -23,7 +23,8 @@ public: // TODO: rename these values after figuring out what they do SEAD_ENUM(ActorCreateMode, k0, k1, k2, k3, k4, k5, k6, k7, k8) - ActorBinding(const evfl::ResActor* res, ActorBindings* parent) : mResActor(res), mParent(parent) {} + ActorBinding(const evfl::ResActor* res, ActorBindings* parent) + : mResActor(res), mParent(parent) {} void bindAction(const evfl::ResAction* action); void bindQuery(const evfl::ResQuery* query);