mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-03 03:41:32 +00:00
Use proper type for Record::recType
This commit is contained in:
parent
283b68025c
commit
e1fe501013
2 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue