From 71a41d225ddb89e23716f23da2050a1c28efed49 Mon Sep 17 00:00:00 2001 From: KakarotCake <61133727+KakarottoCake@users.noreply.github.com> Date: Sat, 29 Aug 2026 03:11:24 -0400 Subject: [PATCH] M3DUtil/MActorAnm: wrap the MtxCalcTypeName comment to 80 columns The comment block above `enum MActorMtxCalcType` landed in c19ae4d4 at 82 and 81 columns, against the repo's `ColumnLimit: 80`, so `check-format-and-tidy` fails on it. This is not confined to one branch. The clang-format action walks the whole tree rather than the diff, so every open pull request goes red the moment it merges main, for a violation none of them introduced. I hit it on #154 and confirmed it is not specific to that branch. It is also the only one: after this reflow, `clang-format --dry-run -Werror` across all of `src/` and `include/` reports zero failing files. Only the line breaks move. The wording is unchanged. Co-Authored-By: Claude Opus 5 --- include/M3DUtil/MActorAnm.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/M3DUtil/MActorAnm.hpp b/include/M3DUtil/MActorAnm.hpp index 37385eb8a..fc12529b1 100644 --- a/include/M3DUtil/MActorAnm.hpp +++ b/include/M3DUtil/MActorAnm.hpp @@ -271,9 +271,10 @@ class MActorAnmBtp : public MActorAnmMatEach { /* 0x28 */ J3DTexNoAnm** unk28; }; -// The names come from the MtxCalcTypeName table in M3DUtil/InfectiousStrings.hpp, -// which survives in the ROM (read it in MarioDraw.cpp's .data): its four entries -// are "MActorMtxCalcType_Basic", "_Softimage", "_MotionBlend" and "_User". +// The names come from the MtxCalcTypeName table in +// M3DUtil/InfectiousStrings.hpp, which survives in the ROM (read it in +// MarioDraw.cpp's .data): its four entries are "MActorMtxCalcType_Basic", +// "_Softimage", "_MotionBlend" and "_User". enum MActorMtxCalcType { MACTOR_MTX_CALC_BASIC, MACTOR_MTX_CALC_SOFTIMAGE,