From a06ff079977c440e34f1adbcf4ff452e12970e4e Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 29 May 2001 14:51:05 +0000 Subject: [PATCH] --- source/friend/friend.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/friend/friend.cpp b/source/friend/friend.cpp index 11da8c3a4..a3d3bbc75 100644 --- a/source/friend/friend.cpp +++ b/source/friend/friend.cpp @@ -74,9 +74,9 @@ // These are temporary.. I'll clean them up when I can test them (pkg) -int strobespeed=20; +int strobespeed=500; int strobebase=300; -int strobescale=100; +int strobescale=200; // These are temporary.. I'll clean them up when I can test them (pkg) @@ -308,8 +308,8 @@ void CNpcFriend::render() fh=CGameScene::getSpriteBank()->getFrameHeader(map->m_iconFrame); size=strobebase+((msin(m_iconStrobe)*strobescale)>>12); iconPos=getRenderPos(); - iconPos.vx-=(fh->W*size)>>(8+1); - iconPos.vy-=120; + iconPos.vx-=fh->W/2; + iconPos.vy-=getCollisionSize().vy+(fh->H*2); CGameScene::getSpriteBank()->printFT4Scaled(fh,iconPos.vx,iconPos.vy,0,0,0,size); } }