forked from mirror/openmw-tes3mp
Fix 'start' text key fallback lookup
This commit is contained in:
parent
6f0b9a5f2c
commit
544011e096
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ bool Animation::reset(size_t layeridx, const NifOgre::TextKeyMap &keys, NifOgre:
|
|||
NifOgre::TextKeyMap::const_iterator startkey(keys.begin());
|
||||
while(startkey != keys.end() && startkey->second != tag)
|
||||
startkey++;
|
||||
if(startkey == keys.end() && tag == "loop start")
|
||||
if(startkey == keys.end() && start == "loop start")
|
||||
{
|
||||
tag = groupname+": start";
|
||||
startkey = keys.begin();
|
||||
|
|
Loading…
Reference in a new issue