mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-29 09:11:34 +00:00
fix typo with wrong flags in particle nifloader
This commit is contained in:
parent
f451b09f10
commit
0954597fa7
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