diff options
| author | Choupom <andycootlapin@hotmail.fr> | 2011-06-01 20:19:12 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-06-02 17:42:30 +0200 |
| commit | 603071ee92de0859da04a70c7bd5971fca163288 (patch) | |
| tree | 964b093b5404bac324997dfd4278e64d14783097 /src/game/client/render.cpp | |
| parent | deff0ce7c4442950580533b47d7145f79bcca9bb (diff) | |
| download | zcatch-603071ee92de0859da04a70c7bd5971fca163288.tar.gz zcatch-603071ee92de0859da04a70c7bd5971fca163288.zip | |
fixed data struct names
Diffstat (limited to 'src/game/client/render.cpp')
| -rw-r--r-- | src/game/client/render.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/render.cpp b/src/game/client/render.cpp index 5dbc3842..93909d0c 100644 --- a/src/game/client/render.cpp +++ b/src/game/client/render.cpp @@ -37,7 +37,7 @@ static void layershot_end() config.cl_layershot++; }*/ -void CRenderTools::SelectSprite(SPRITE *pSpr, int Flags, int sx, int sy) +void CRenderTools::SelectSprite(CDataSprite *pSpr, int Flags, int sx, int sy) { int x = pSpr->m_X+sx; int y = pSpr->m_Y+sy; @@ -232,7 +232,7 @@ void CRenderTools::RenderTee(CAnimState *pAnim, CTeeRenderInfo *pInfo, int Emote } // draw feet - ANIM_KEYFRAME *pFoot = f ? pAnim->GetFrontFoot() : pAnim->GetBackFoot(); + CAnimKeyframe *pFoot = f ? pAnim->GetFrontFoot() : pAnim->GetBackFoot(); float w = BaseSize; float h = BaseSize/2; |