mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-23 07:09:41 +00:00
Fix uninitialized variable use
This commit is contained in:
parent
2eebb0bf73
commit
b158919c4b
1 changed files with 3 additions and 0 deletions
|
@ -165,6 +165,9 @@ struct KeyListT {
|
||||||
void read(NIFStream *nif, bool force=false)
|
void read(NIFStream *nif, bool force=false)
|
||||||
{
|
{
|
||||||
assert(nif);
|
assert(nif);
|
||||||
|
|
||||||
|
mInterpolationType = 0;
|
||||||
|
|
||||||
size_t count = nif->getUInt();
|
size_t count = nif->getUInt();
|
||||||
if(count == 0 && !force)
|
if(count == 0 && !force)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue