mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
fixed handling of global variables of type short
This commit is contained in:
parent
74f3eb6ad4
commit
e670753497
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ namespace MWWorld
|
|||
case ESM::VT_Short:
|
||||
|
||||
type = 's';
|
||||
value.mShort = *reinterpret_cast<const Interpreter::Type_Integer *> (
|
||||
value.mShort = *reinterpret_cast<const Interpreter::Type_Float *> (
|
||||
&iter->second.value);
|
||||
break;
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ namespace MWWorld
|
|||
{
|
||||
Interpreter::Type_Float mFloat;
|
||||
Interpreter::Type_Float mLong; // Why Morrowind, why? :(
|
||||
Interpreter::Type_Integer mShort;
|
||||
Interpreter::Type_Float mShort;
|
||||
};
|
||||
|
||||
typedef std::map<std::string, std::pair<char, Data> > Collection;
|
||||
|
|
Loading…
Reference in a new issue