diff options
| author | Yanis <35189056+Yanis002@users.noreply.github.com> | 2025-07-16 15:33:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-16 15:33:58 +0200 |
| commit | 7a01af4783ca2904590ed0ba6e61261d98706f47 (patch) | |
| tree | 5491fa87030e5c32a11e536607a14dca459bf8dc /src/Main/Actor | |
| parent | ce9f96d932c0028262821ff3fc39a4b05c977285 (diff) | |
update .clang-format rules (#120)
Diffstat (limited to 'src/Main/Actor')
| -rw-r--r-- | src/Main/Actor/ActorType.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Main/Actor/ActorType.cpp b/src/Main/Actor/ActorType.cpp index ec5f564f..cef37bb4 100644 --- a/src/Main/Actor/ActorType.cpp +++ b/src/Main/Actor/ActorType.cpp @@ -41,7 +41,9 @@ ARM void ActorType::Unregister() { ActorType **previous = NULL; for (actorType = sActorTypeList.head; actorType != NULL; actorType = actorType->next) { - if (actorType == this) break; + if (actorType == this) { + break; + } previous = current; current = &actorType->next; } |
