mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-05-30 00:41:19 +00:00
* 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:
parent
03d2077709
commit
915b50bb25
2 changed files with 3 additions and 3 deletions
|
@ -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 ();
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue