mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 11:10:39 +00:00
- guard NNLoadSaveConstruct with #ifdef NOONE_EXTENSIONS.
This commit is contained in:
parent
26d4114566
commit
c583318f31
2 changed files with 6 additions and 1 deletions
|
@ -833,7 +833,9 @@ void TriggersLoadSaveConstruct(void);
|
||||||
void ViewLoadSaveConstruct(void);
|
void ViewLoadSaveConstruct(void);
|
||||||
void WarpLoadSaveConstruct(void);
|
void WarpLoadSaveConstruct(void);
|
||||||
void WeaponLoadSaveConstruct(void);
|
void WeaponLoadSaveConstruct(void);
|
||||||
|
#ifdef NOONE_EXTENSIONS
|
||||||
void NNLoadSaveConstruct(void);
|
void NNLoadSaveConstruct(void);
|
||||||
|
#endif
|
||||||
void ASoundLoadSaveConstruct(void);
|
void ASoundLoadSaveConstruct(void);
|
||||||
|
|
||||||
void LoadSaveSetup(void)
|
void LoadSaveSetup(void)
|
||||||
|
@ -853,7 +855,9 @@ void LoadSaveSetup(void)
|
||||||
ViewLoadSaveConstruct();
|
ViewLoadSaveConstruct();
|
||||||
WarpLoadSaveConstruct();
|
WarpLoadSaveConstruct();
|
||||||
WeaponLoadSaveConstruct();
|
WeaponLoadSaveConstruct();
|
||||||
|
#ifdef NOONE_EXTENSIONS
|
||||||
NNLoadSaveConstruct();
|
NNLoadSaveConstruct();
|
||||||
|
#endif
|
||||||
ASoundLoadSaveConstruct();
|
ASoundLoadSaveConstruct();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3709,7 +3709,6 @@ void callbackGenDudeUpdate(int nSprite) // 24
|
||||||
if (spriRangeIsFine(nSprite))
|
if (spriRangeIsFine(nSprite))
|
||||||
genDudeUpdate(&sprite[nSprite]);
|
genDudeUpdate(&sprite[nSprite]);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
class NNLoadSave : public LoadSave
|
class NNLoadSave : public LoadSave
|
||||||
|
@ -3752,3 +3751,5 @@ void NNLoadSaveConstruct(void)
|
||||||
// For full documentation please visit http://cruo.bloodgame.ru/xxsystem
|
// For full documentation please visit http://cruo.bloodgame.ru/xxsystem
|
||||||
///////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////
|
||||||
END_BLD_NS
|
END_BLD_NS
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue