mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 02:45:38 +00:00
Merge branch 'fix_typo' into 'master'
Fix particle flags typo (#6857) Closes #6857 See merge request OpenMW/openmw!2102
This commit is contained in:
commit
2bb28b5e27
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ struct NiParticleSystemController : public Controller
|
|||
void read(NIFStream *nif) override;
|
||||
void post(NIFFile *nif) override;
|
||||
|
||||
bool noAutoAdjust() const { return flags & EmitFlag_NoAutoAdjust; }
|
||||
bool noAutoAdjust() const { return emitFlags & EmitFlag_NoAutoAdjust; }
|
||||
bool emitAtVertex() const { return flags & BSPArrayController_AtVertex; }
|
||||
};
|
||||
using NiBSPArrayController = NiParticleSystemController;
|
||||
|
|
Loading…
Reference in a new issue