summaryrefslogtreecommitdiff
path: root/include/Actor/ActorRef.hpp
diff options
context:
space:
mode:
authorAetias <144526980+AetiasHax@users.noreply.github.com>2024-10-19 13:20:17 +0200
committerGitHub <noreply@github.com>2024-10-19 13:20:17 +0200
commitffdfd609fb9bc8f968ddc6f187da1d50731cbf69 (patch)
treed13b6142759bc78d50a491d87de56e7e9213c9a4 /include/Actor/ActorRef.hpp
parent32c4725191813003e34a263a6d1530f806d1ac7c (diff)
parent10c2e3413b3244c5f2adffac1140f37920f13988 (diff)
Merge pull request #51 from AetiasHax/dsd
`dsd` integration
Diffstat (limited to 'include/Actor/ActorRef.hpp')
-rw-r--r--include/Actor/ActorRef.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/Actor/ActorRef.hpp b/include/Actor/ActorRef.hpp
index be82f8a8..eeace571 100644
--- a/include/Actor/ActorRef.hpp
+++ b/include/Actor/ActorRef.hpp
@@ -9,13 +9,12 @@ struct ActorRef {
/* 8 */
inline ActorRef() {}
- inline ActorRef(s32 id, s32 index):
+ inline ActorRef(s32 id, s32 index) :
id(id),
- index(index)
- {}
+ index(index) {}
inline void Reset() {
- id = -1;
+ id = -1;
index = -1;
}
};