diff options
| author | Choupom <andycootlapin@hotmail.fr> | 2011-04-19 16:10:50 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-05-03 19:25:11 +0200 |
| commit | 7f15b3ac5728c44e90a0f0486e17861796f88210 (patch) | |
| tree | 37798531ecec504cb7a242d2e2b0fc38a78a0bbc /src/game/client/components | |
| parent | c2f75b0017f7244b40f109926c48a0484b575ae8 (diff) | |
| download | zcatch-7f15b3ac5728c44e90a0f0486e17861796f88210.tar.gz zcatch-7f15b3ac5728c44e90a0f0486e17861796f88210.zip | |
fixed several stuffs
Diffstat (limited to 'src/game/client/components')
| -rw-r--r-- | src/game/client/components/effects.cpp | 2 | ||||
| -rw-r--r-- | src/game/client/components/spectator.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/components/effects.cpp b/src/game/client/components/effects.cpp index 573ac410..8554b7ba 100644 --- a/src/game/client/components/effects.cpp +++ b/src/game/client/components/effects.cpp @@ -86,7 +86,7 @@ void CEffects::SmokeTrail(vec2 Pos, vec2 Vel) p.m_LifeSpan = 0.5f + frandom()*0.5f; p.m_StartSize = 12.0f + frandom()*8; p.m_EndSize = 0; - p.m_Friction = 0.7; + p.m_Friction = 0.7f; p.m_Gravity = frandom()*-500.0f; m_pClient->m_pParticles->Add(CParticles::GROUP_PROJECTILE_TRAIL, &p); } diff --git a/src/game/client/components/spectator.cpp b/src/game/client/components/spectator.cpp index 41c7b48f..542f337a 100644 --- a/src/game/client/components/spectator.cpp +++ b/src/game/client/components/spectator.cpp @@ -64,8 +64,8 @@ void CSpectator::ConSpectateNext(IConsole::IResult *pResult, void *pUserData) if(!pSelf->m_pClient->m_Snap.m_paPlayerInfos[i] || pSelf->m_pClient->m_Snap.m_paPlayerInfos[i]->m_Team == TEAM_SPECTATORS) continue; - NewSpectatorID = i; - GotNewSpectatorID = true; + NewSpectatorID = i; + GotNewSpectatorID = true; break; } } |