run clang-format (#979)

https://github.com/Kenix3/libultraship/pull/974 said "The tidy-format is a false positive, it should be ignored since it breaks the gbi file"

that makes sense for *tidy* issues, as tidy rules can force naming that would break things

turns out there was a *format* issue with a comment in the file, this fixes that

Co-authored-by: briaguya <70942617+briaguya-ai@users.noreply.github.com>
This commit is contained in:
briaguya
2026-01-10 14:01:17 -05:00
committed by GitHub
co-authored by briaguya
parent 1220fd490b
commit b2dd85ca39
+9 -9
View File
@@ -1836,15 +1836,15 @@ typedef union Gfx {
{ (_SHIFTL(G_VTX, 24, 8) | _SHIFTL((n), 12, 8) | _SHIFTL((v0) + (n), 1, 7)), (uintptr_t)(v)MakeTrace() }
#elif (defined(F3DEX_GBI) || defined(F3DLP_GBI))
/*
* F3DEX_GBI: G_VTX GBI format was changed to support 64 vertice.
*
* +--------+--------+------+----------+
* G_VTX | cmd:8 | v0:8 | n:6 |length:10 |
* +-+---+--+--------+------+----------+
* | |seg| address |
* +-+---+-----------------------------+
*/
/*
* F3DEX_GBI: G_VTX GBI format was changed to support 64 vertice.
*
* +--------+--------+------+----------+
* G_VTX | cmd:8 | v0:8 | n:6 |length:10 |
* +-+---+--+--------+------+----------+
* | |seg| address |
* +-+---+-----------------------------+
*/
#define __gSPVertex(pkt, v, n, v0) gDma1p((pkt), G_VTX, (v), ((n) << 10) | (sizeof(Vtx) * (n)-1), (v0)*2)
#define gsSPVertex(v, n, v0) gsDma1p(G_VTX, (v), ((n) << 10) | (sizeof(Vtx) * (n)-1), (v0)*2)
#else