mirror of https://github.com/AxioDL/metaforce.git
Windows build fixes
This commit is contained in:
parent
664cbec769
commit
6056857cab
|
@ -29,7 +29,7 @@ void CAutoMapper::SAutoMapperRenderState::InterpolateWithClamp(const SAutoMapper
|
|||
else
|
||||
easeInOut = zeus::clamp(0.f, 1.f - (0.5f * std::sqrt(2.f * omt - 1.f) + 0.5f), 1.f);
|
||||
|
||||
float eases[] = {};
|
||||
float eases[5] = {};
|
||||
eases[1] = t;
|
||||
eases[2] = easeOut;
|
||||
eases[3] = easeIn;
|
||||
|
@ -766,7 +766,7 @@ zeus::CVector2i CAutoMapper::GetMiniMapViewportSize()
|
|||
|
||||
zeus::CVector2i CAutoMapper::GetMapScreenViewportSize()
|
||||
{
|
||||
return {g_Viewport.x8_width, g_Viewport.xc_height};
|
||||
return {int(g_Viewport.x8_width), int(g_Viewport.xc_height)};
|
||||
}
|
||||
|
||||
float CAutoMapper::GetMapAreaMaxDrawDepth(const CStateManager&, TAreaId aid) const
|
||||
|
|
|
@ -49,7 +49,7 @@ if(APPLE)
|
|||
endif()
|
||||
|
||||
add_library(RuntimeCommon
|
||||
RetroTypes.hpp RetroTypes.cpp
|
||||
RetroTypes.hpp
|
||||
${CLIENT_SOURCES}
|
||||
${MP1_SOURCES}
|
||||
${AUDIO_SOURCES}
|
||||
|
@ -109,7 +109,7 @@ add_library(RuntimeCommon
|
|||
CPlayMovieBase.hpp
|
||||
CGameDebug.hpp CGameDebug.cpp
|
||||
CGameHintInfo.hpp CGameHintInfo.cpp
|
||||
rstl.hpp rstl.cpp
|
||||
rstl.hpp
|
||||
GameGlobalObjects.hpp GameGlobalObjects.cpp
|
||||
MkCastTo.py
|
||||
TCastTo.hpp TCastTo.cpp
|
||||
|
|
|
@ -17,7 +17,7 @@ CENTITY_TYPES = (
|
|||
('CDestroyableRock', 'World/CDestroyableRock.hpp'),
|
||||
('CEnergyProjectile', 'Weapon/CEnergyProjectile.hpp'),
|
||||
('CEntity', 'World/CEntity.hpp'),
|
||||
('CExplosion', 'Weapon/CExplosion.hpp'),
|
||||
('CExplosion', 'World/CExplosion.hpp'),
|
||||
('CFirstPersonCamera', 'Camera/CFirstPersonCamera.hpp'),
|
||||
('CFishCloud', 'World/CFishCloud.hpp'),
|
||||
('CGameCamera', 'Camera/CGameCamera.hpp'),
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
#include "RetroTypes.hpp"
|
||||
#include "zeus/CVector3f.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
}
|
|
@ -24,7 +24,6 @@ set(WEAPON_SOURCES
|
|||
CPlasmaProjectile.hpp CPlasmaProjectile.cpp
|
||||
CEnergyProjectile.cpp CEnergyProjectile.cpp
|
||||
CProjectileWeapon.hpp CProjectileWeapon.cpp
|
||||
CExplosion.hpp CExplosion.cpp
|
||||
CBomb.hpp CBomb.cpp
|
||||
CPowerBomb.hpp CPowerBomb.cpp)
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "CEffect.hpp"
|
||||
#include "Particle/CElementGen.hpp"
|
||||
#include "Particle/CGenDescription.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
#include "CHUDMemoParms.hpp"
|
|
@ -105,7 +105,7 @@ set(WORLD_SOURCES
|
|||
CPatternedInfo.hpp CPatternedInfo.cpp
|
||||
CHealthInfo.hpp CHealthInfo.cpp
|
||||
CPatterned.hpp CPatterned.cpp
|
||||
CHUDMemoParms.hpp CHUDMemoParms.cpp
|
||||
CHUDMemoParms.hpp
|
||||
CWorldShadow.hpp CWorldShadow.cpp
|
||||
CProjectedShadow.hpp CProjectedShadow.cpp
|
||||
CGameLight.hpp CGameLight.cpp
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
#include "rstl.hpp"
|
||||
|
||||
namespace rstl
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in New Issue