mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 07:19:05 +02:00
Fix incorrect assert
This commit is contained in:
parent
2f8c3f2f24
commit
0df6661f5b
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ static int triggerReactionNameToIndex(const QString& reactionName) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int beginEndReactionNameToIndex(const QString& reactionName) {
|
static int beginEndReactionNameToIndex(const QString& reactionName) {
|
||||||
assert(NUM_AVATAR_BEGIN_END_REACTIONS == TRIGGER_REACTION_NAMES.size());
|
assert(NUM_AVATAR_BEGIN_END_REACTIONS == BEGIN_END_REACTION_NAMES.size());
|
||||||
return BEGIN_END_REACTION_NAMES.indexOf(reactionName);
|
return BEGIN_END_REACTION_NAMES.indexOf(reactionName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue