Use proper type for Record::recType

C++20
elsid 3 years ago
parent 283b68025c
commit e1fe501013
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -149,7 +149,7 @@ enum RecordType
struct Record
{
// Record type and type name
int recType{RC_MISSING};
RecordType recType{RC_MISSING};
std::string recName;
unsigned int recIndex{~0u};

@ -2122,6 +2122,8 @@ namespace NifOsg
specStrength = shaderprop->mSpecStrength;
break;
}
default:
break;
}
}

Loading…
Cancel
Save