Depsgraph: Fix typo in assert
This commit is contained in:
@@ -145,7 +145,7 @@ DepsOperationStringifier::DepsOperationStringifier()
|
|||||||
|
|
||||||
const char *DepsOperationStringifier::operator[](eDepsOperation_Code opcode)
|
const char *DepsOperationStringifier::operator[](eDepsOperation_Code opcode)
|
||||||
{
|
{
|
||||||
BLI_assert((opcode > 0) && (opcode < DEG_NUM_OPCODES));
|
BLI_assert((opcode >= 0) && (opcode < DEG_NUM_OPCODES));
|
||||||
if (opcode >= 0 && opcode < DEG_NUM_OPCODES) {
|
if (opcode >= 0 && opcode < DEG_NUM_OPCODES) {
|
||||||
return names_[opcode];
|
return names_[opcode];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user