-
-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xrGame/ui/UIWpnParams.h|cpp: compatibility with CS (#382)
- Loading branch information
1 parent
8904da0
commit 2f03950
Showing
2 changed files
with
31 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,23 +23,23 @@ class CUIWpnParams : public CUIWindow | |
CUIDoubleProgressBar m_progressDamage; | ||
CUIDoubleProgressBar m_progressRPM; | ||
|
||
CUIStatic m_icon_acc; | ||
CUIStatic m_icon_dam; | ||
CUIStatic m_icon_han; | ||
CUIStatic m_icon_rpm; | ||
CUIStatic* m_icon_acc; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Xottab-DUTY
Author
Member
|
||
CUIStatic* m_icon_dam; | ||
CUIStatic* m_icon_han; | ||
CUIStatic* m_icon_rpm; | ||
|
||
CUIStatic m_stAmmo; | ||
CUIStatic* m_stAmmo; | ||
CUITextWnd m_textAccuracy; | ||
CUITextWnd m_textHandling; | ||
CUITextWnd m_textDamage; | ||
CUITextWnd m_textRPM; | ||
CUITextWnd* m_textAmmoTypes; | ||
CUITextWnd* m_textAmmoUsedType; | ||
CUITextWnd m_textAmmoCount; | ||
CUITextWnd m_textAmmoCount2; | ||
CUITextWnd* m_textAmmoCount; | ||
CUITextWnd* m_textAmmoCount2; | ||
CUIStatic* m_stAmmoType1; | ||
CUIStatic* m_stAmmoType2; | ||
CUIStatic m_Prop_line; | ||
CUIStatic* m_Prop_line; | ||
}; | ||
|
||
// ------------------------------------------------------------------------------------------------- | ||
|
Maybe there were some reasons to avoid pointers while developing CoP...