aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmma Miler <27428383+emma-miler@users.noreply.github.com>2022-04-24 00:10:51 +0200
committerGitHub <noreply@github.com>2022-04-24 00:10:51 +0200
commit90c123e6beabc833e8bbf0eae89653a522cc74bb (patch)
tree783c707e4e3b4895813e963853bc1a6e52bce11b
parent0dbf856685ace6b9745c1a17ab589e9f838ed3df (diff)
downloadNorthstarLauncher-90c123e6beabc833e8bbf0eae89653a522cc74bb.tar.gz
NorthstarLauncher-90c123e6beabc833e8bbf0eae89653a522cc74bb.zip
Make debugoverlay conform to clang-format (#151)
-rw-r--r--NorthstarDedicatedTest/debugoverlay.cpp34
1 files changed, 25 insertions, 9 deletions
diff --git a/NorthstarDedicatedTest/debugoverlay.cpp b/NorthstarDedicatedTest/debugoverlay.cpp
index 9620609f..e29da96b 100644
--- a/NorthstarDedicatedTest/debugoverlay.cpp
+++ b/NorthstarDedicatedTest/debugoverlay.cpp
@@ -36,16 +36,19 @@ struct OverlayBase_t
}
OverlayType_t m_Type; // What type of overlay is it?
- int m_nCreationTick; // Duration -1 means go away after this frame #
- int m_nServerCount; // Latch server count, too
- float m_flEndTime; // When does this box go away
+ int m_nCreationTick; // Duration -1 means go away after this frame #
+ int m_nServerCount; // Latch server count, too
+ float m_flEndTime; // When does this box go away
OverlayBase_t* m_pNextOverlay;
__int64 m_pUnk;
};
struct OverlayLine_t : public OverlayBase_t
{
- OverlayLine_t() { m_Type = OVERLAY_LINE; }
+ OverlayLine_t()
+ {
+ m_Type = OVERLAY_LINE;
+ }
Vector3 origin;
Vector3 dest;
@@ -58,7 +61,10 @@ struct OverlayLine_t : public OverlayBase_t
struct OverlayBox_t : public OverlayBase_t
{
- OverlayBox_t() { m_Type = OVERLAY_BOX; }
+ OverlayBox_t()
+ {
+ m_Type = OVERLAY_BOX;
+ }
Vector3 origin;
Vector3 mins;
@@ -120,14 +126,24 @@ void __fastcall DrawOverlayHook(OverlayBase_t* pOverlay)
if (pCurrBox->a > 0)
{
RenderBox(
- pCurrBox->origin, pCurrBox->angles, pCurrBox->mins, pCurrBox->maxs,
- Color(pCurrBox->r, pCurrBox->g, pCurrBox->b, pCurrBox->a), false, false);
+ pCurrBox->origin,
+ pCurrBox->angles,
+ pCurrBox->mins,
+ pCurrBox->maxs,
+ Color(pCurrBox->r, pCurrBox->g, pCurrBox->b, pCurrBox->a),
+ false,
+ false);
}
if (pCurrBox->a < 255)
{
RenderWireframeBox(
- pCurrBox->origin, pCurrBox->angles, pCurrBox->mins, pCurrBox->maxs, Color(pCurrBox->r, pCurrBox->g, pCurrBox->b, 255),
- false, false);
+ pCurrBox->origin,
+ pCurrBox->angles,
+ pCurrBox->mins,
+ pCurrBox->maxs,
+ Color(pCurrBox->r, pCurrBox->g, pCurrBox->b, 255),
+ false,
+ false);
}
}
break;