1
0
Fork 1
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:
Marc Zinnschlag 2010-07-21 14:48:03 +02:00
parent 74f3eb6ad4
commit e670753497
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;