This commit is contained in:
Charles 2001-02-12 15:37:31 +00:00
parent 7f10a4e47e
commit b0f4d49313
7 changed files with 109 additions and 8 deletions

View file

@ -275,8 +275,8 @@ void CProjectile::render()
offset = getScreenOffset();
x = Pos.vx - offset.vx + ( scrnWidth >> 1 ) - ( spriteWidth >> 1 );
y = Pos.vy - offset.vy + ( scrnHeight >> 1 ) - ( spriteHeight >> 1 );
x = Pos.vx - offset.vx /*+ ( scrnWidth >> 1 )*/ - ( spriteWidth >> 1 );
y = Pos.vy - offset.vy /*+ ( scrnHeight >> 1 )*/ - ( spriteHeight >> 1 );
m_spriteBank->printFT4(FRM_BARNACLEBOY,x,y,0,0,0);
}