mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
SW: Fix -Wnarrowing warning
git-svn-id: https://svn.eduke32.com/eduke32@7527 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c2921abe4a
commit
c7a209f690
1 changed files with 1 additions and 1 deletions
|
@ -4647,7 +4647,7 @@ WeaponMoveHit(short SpriteNum)
|
|||
|
||||
case HIT_WALL:
|
||||
{
|
||||
hitdata_t hitinfo = { { 0, 0, 0 }, -2, NORM_WALL(u->ret), -2 };
|
||||
hitdata_t hitinfo = { { 0, 0, 0 }, -2, (int16_t)NORM_WALL(u->ret), -2 };
|
||||
WALLp wph = &wall[hitinfo.wall];
|
||||
SECTOR_OBJECTp sop;
|
||||
|
||||
|
|
Loading…
Reference in a new issue