mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-19 07:11:33 +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
|
struct Record
|
||||||
{
|
{
|
||||||
// Record type and type name
|
// Record type and type name
|
||||||
int recType{RC_MISSING};
|
RecordType recType{RC_MISSING};
|
||||||
std::string recName;
|
std::string recName;
|
||||||
unsigned int recIndex{~0u};
|
unsigned int recIndex{~0u};
|
||||||
|
|
||||||
|
|
|
@ -2122,6 +2122,8 @@ namespace NifOsg
|
||||||
specStrength = shaderprop->mSpecStrength;
|
specStrength = shaderprop->mSpecStrength;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue