mirror of https://github.com/OpenMW/openmw.git
Move fourCC to a separate file
parent
45e673564f
commit
baa39c06bb
@ -0,0 +1,13 @@
|
||||
#ifndef OPENMW_COMPONENTS_ESM_FOURCC_H
|
||||
#define OPENMW_COMPONENTS_ESM_FOURCC_H
|
||||
|
||||
namespace ESM
|
||||
{
|
||||
inline constexpr unsigned int fourCC(const char (&name)[5])
|
||||
{
|
||||
return static_cast<unsigned char>(name[0]) | (static_cast<unsigned char>(name[1]) << 8)
|
||||
| (static_cast<unsigned char>(name[2]) << 16) | (static_cast<unsigned char>(name[3]) << 24);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // OPENMW_COMPONENTS_ESM_FOURCC_H
|
Loading…
Reference in New Issue