forked from mirror/openmw-tes3mp
Compare commits
8 commits
0.7.0-alph
...
0.7.0
Author | SHA1 | Date | |
---|---|---|---|
|
8aad93b904 | ||
|
4692f29b9d | ||
|
03d377ec54 | ||
|
cb82318c36 | ||
|
3b2098382b | ||
|
cb5e24e6c5 | ||
|
d35026bbf5 | ||
|
911079e0bc |
2 changed files with 14 additions and 4 deletions
|
@ -458,6 +458,15 @@ namespace MWGui
|
|||
|
||||
updateMagicMarkers();
|
||||
updateCustomMarkers();
|
||||
/*
|
||||
Start of tes3mp addition
|
||||
|
||||
Update player markers when cell changes to fix their locations
|
||||
*/
|
||||
updatePlayerMarkers();
|
||||
/*
|
||||
End of tes3mp addition
|
||||
*/
|
||||
}
|
||||
|
||||
void LocalMapBase::requestMapRender(const MWWorld::CellStore *cell)
|
||||
|
|
|
@ -192,15 +192,16 @@ std::string Utils::getArchitectureType()
|
|||
{
|
||||
#if defined(__x86_64__) || defined(_M_X64)
|
||||
return "64-bit";
|
||||
#elif defined(__i386__) || defined(_M_I86)
|
||||
#elif defined(__i386__) || defined(_M_I86) || defined(_M_IX86)
|
||||
return "32-bit";
|
||||
#elif defined(__ARM_ARCH)
|
||||
return "ARMv" + __ARM_ARCH;
|
||||
std::string architectureType = "ARMv" + __ARM_ARCH;
|
||||
#ifdef __aarch64__
|
||||
return "64-bit";
|
||||
architectureType = architectureType + " 64-bit";
|
||||
#else
|
||||
return "32-bit";
|
||||
architectureType = architectureType + " 32-bit";
|
||||
#endif
|
||||
return architectureType;
|
||||
#else
|
||||
return "Unknown architecture";
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue