This repository was archived by the owner on Jan 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ void ACrab::SetRightBGLeg(Leg *newLeg) {
575
575
576
576
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
577
577
578
- BITMAP *ACrab::GetGraphicalIcon () const {
578
+ BITMAP * ACrab::GetGraphicalIcon () const {
579
579
return m_GraphicalIcon ? m_GraphicalIcon : (m_pTurret ? m_pTurret->GetSpriteFrame (0 ) : GetSpriteFrame (0 ));
580
580
}
581
581
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ int FirearmActivationDelay() const;
439
439
// / Gets the GUI representation of this ACrab, only defaulting to its Turret or body if no GraphicalIcon has been defined.
440
440
// / </summary>
441
441
// / <returns>The graphical representation of this ACrab as a BITMAP.</returns>
442
- BITMAP *GetGraphicalIcon () const override ;
442
+ BITMAP * GetGraphicalIcon () const override ;
443
443
444
444
445
445
// ////////////////////////////////////////////////////////////////////////////////////////
Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ void AHuman::SetBGLeg(Leg *newLeg) {
630
630
631
631
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
632
632
633
- BITMAP *AHuman::GetGraphicalIcon () const {
633
+ BITMAP * AHuman::GetGraphicalIcon () const {
634
634
return m_GraphicalIcon ? m_GraphicalIcon : (m_pHead ? m_pHead->GetSpriteFrame (0 ) : GetSpriteFrame (0 ));
635
635
}
636
636
Original file line number Diff line number Diff line change @@ -736,7 +736,7 @@ ClassInfoGetters;
736
736
// / Gets the GUI representation of this AHuman, only defaulting to its Head or body if no GraphicalIcon has been defined.
737
737
// / </summary>
738
738
// / <returns>The graphical representation of this AHuman as a BITMAP.</returns>
739
- BITMAP *GetGraphicalIcon () const override ;
739
+ BITMAP * GetGraphicalIcon () const override ;
740
740
741
741
742
742
// ////////////////////////////////////////////////////////////////////////////////////////
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ class MOSprite : public MovableObject {
391
391
// / Gets the GUI representation of this MOSprite, either based on the first frame of its sprite or separately defined icon file.
392
392
// / </summary>
393
393
// / <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 ]; }
395
395
396
396
// / <summary>
397
397
// / Gets the width of this MOSprite's GUI icon.
You can’t perform that action at this time.
0 commit comments