mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-11 05:20:14 -04:00
Use proper type for Record::recType
This commit is contained in:
parent
283b68025c
commit
e1fe501013
@ -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…
x
Reference in New Issue
Block a user