* Updated to ZDoom r4310:

- Fixed signed-ness issue with FloatBobPhase.


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@1586 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
gez 2013-06-01 13:42:05 +00:00
parent 03d2077709
commit 915b50bb25
2 changed files with 3 additions and 3 deletions

View file

@ -3878,7 +3878,7 @@ AActor *AActor::StaticSpawn (const PClass *type, fixed_t ix, fixed_t iy, fixed_t
actor->SpawnPoint[2] = (actor->z - actor->floorz);
}
if (actor->FloatBobPhase < 0) actor->FloatBobPhase = rng(); // Don't make everything bob in sync (unless deliberately told to do)
if (actor->FloatBobPhase == (BYTE)-1) actor->FloatBobPhase = rng(); // Don't make everything bob in sync (unless deliberately told to do)
if (actor->flags2 & MF2_FLOORCLIP)
{
actor->AdjustFloorClip ();

View file

@ -3,5 +3,5 @@
// This file was automatically generated by the
// updaterevision tool. Do not edit by hand.
#define ZD_SVN_REVISION_STRING "4307"
#define ZD_SVN_REVISION_NUMBER 4307
#define ZD_SVN_REVISION_STRING "4310"
#define ZD_SVN_REVISION_NUMBER 4310