1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-12-13 09:53:06 +00:00

Attempt to fix a regression - crash on ARM

This commit is contained in:
Andrei Kortunov 2019-10-28 18:58:16 +04:00
parent 0fa0e9571b
commit b2e12f0a73
2 changed files with 3 additions and 3 deletions

View file

@ -33,14 +33,14 @@ struct Region
// the engine uses mA as "snow" and mB as "blizard" // the engine uses mA as "snow" and mB as "blizard"
mA, mB; mA, mB;
}; // 10 bytes }; // 10 bytes
#pragma pack(pop)
// Reference to a sound that is played randomly in this region // Reference to a sound that is played randomly in this region
struct SoundRef struct SoundRef
{ {
std::string mSound; std::string mSound;
unsigned char mChance; unsigned char mChance;
}; // 33 bytes };
#pragma pack(pop)
WEATstruct mData; WEATstruct mData;
int mMapColor; // RGBA int mMapColor; // RGBA

View file

@ -33,7 +33,7 @@ public:
{ {
std::string mName; std::string mName;
Script::SCHDstruct mData; Script::SCHDstruct mData;
}; // 52 bytes };
std::string mId; std::string mId;