1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Merge branch 'master' into shadersystem

This commit is contained in:
scrawl 2012-07-14 18:46:11 +02:00
commit 5e8bf28212

View File

@ -83,7 +83,7 @@ class NIFFile
float read_le32f()
{
union {
int i;
uint32_t i;
float f;
} u = { read_le32() };
return u.f;