Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 1c89118

Browse files
committed
Formatting cleanup from effd887
1 parent 56510df commit 1c89118

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Entities/ACrab.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ void ACrab::SetRightBGLeg(Leg *newLeg) {
575575

576576
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
577577

578-
BITMAP *ACrab::GetGraphicalIcon() const {
578+
BITMAP * ACrab::GetGraphicalIcon() const {
579579
return m_GraphicalIcon ? m_GraphicalIcon : (m_pTurret ? m_pTurret->GetSpriteFrame(0) : GetSpriteFrame(0));
580580
}
581581

Entities/ACrab.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ int FirearmActivationDelay() const;
439439
/// Gets the GUI representation of this ACrab, only defaulting to its Turret or body if no GraphicalIcon has been defined.
440440
/// </summary>
441441
/// <returns>The graphical representation of this ACrab as a BITMAP.</returns>
442-
BITMAP *GetGraphicalIcon() const override;
442+
BITMAP * GetGraphicalIcon() const override;
443443

444444

445445
//////////////////////////////////////////////////////////////////////////////////////////

Entities/AHuman.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ void AHuman::SetBGLeg(Leg *newLeg) {
630630

631631
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
632632

633-
BITMAP *AHuman::GetGraphicalIcon() const {
633+
BITMAP * AHuman::GetGraphicalIcon() const {
634634
return m_GraphicalIcon ? m_GraphicalIcon : (m_pHead ? m_pHead->GetSpriteFrame(0) : GetSpriteFrame(0));
635635
}
636636

Entities/AHuman.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ ClassInfoGetters;
736736
/// Gets the GUI representation of this AHuman, only defaulting to its Head or body if no GraphicalIcon has been defined.
737737
/// </summary>
738738
/// <returns>The graphical representation of this AHuman as a BITMAP.</returns>
739-
BITMAP *GetGraphicalIcon() const override;
739+
BITMAP * GetGraphicalIcon() const override;
740740

741741

742742
//////////////////////////////////////////////////////////////////////////////////////////

Entities/MOSprite.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ class MOSprite : public MovableObject {
391391
/// Gets the GUI representation of this MOSprite, either based on the first frame of its sprite or separately defined icon file.
392392
/// </summary>
393393
/// <returns>The graphical representation of this MOSprite as a BITMAP.</returns>
394-
BITMAP *GetGraphicalIcon() const override { return m_GraphicalIcon != nullptr ? m_GraphicalIcon : m_aSprite[0]; }
394+
BITMAP * GetGraphicalIcon() const override { return m_GraphicalIcon != nullptr ? m_GraphicalIcon : m_aSprite[0]; }
395395

396396
/// <summary>
397397
/// Gets the width of this MOSprite's GUI icon.

0 commit comments

Comments
 (0)