Changed: Don't need to cast since it's already a sint32

This commit is contained in:
kervala 2016-01-02 17:10:50 +01:00
parent e1ba107545
commit 3020f03333

View file

@ -705,7 +705,7 @@ sint32 CFameInterface::getFameIndexed(const CEntityId &entityId, uint32 factionI
if (!returnUnknownValue && fame == NO_FAME)
fame = 0;
return sint32(fame);
return fame;
}
}