mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-20 06:09:22 +00:00
make reloadables optional
This commit is contained in:
parent
6912cfe98a
commit
6692f5b2aa
4 changed files with 9 additions and 0 deletions
|
@ -1476,6 +1476,7 @@ void CHud::GetRidOfAllHudMessages()
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef RELOADABLES
|
||||
void CHud::ReloadTXD()
|
||||
{
|
||||
for (int i = 0; i < NUM_HUD_SPRITES; ++i) {
|
||||
|
@ -1497,6 +1498,7 @@ void CHud::ReloadTXD()
|
|||
Sprites[i].SetTexture(WeaponFilenames[i].name, WeaponFilenames[i].mask);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void CHud::Initialise()
|
||||
{
|
||||
|
|
|
@ -124,7 +124,9 @@ public:
|
|||
static void Draw();
|
||||
static void DrawAfterFade();
|
||||
static void GetRidOfAllHudMessages();
|
||||
#ifdef RELOADABLES
|
||||
static void ReloadTXD();
|
||||
#endif
|
||||
static void Initialise();
|
||||
static void ReInitialise();
|
||||
static void SetBigMessage(wchar *message, int16 style);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue