From ad12be4877e31e6218f62be0e571b3be3da026ab Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 30 May 2013 21:10:54 +0000 Subject: [PATCH] - fixed inappropriate type for FloatBobPhase property. SVN r4299 (trunk) --- src/thingdef/thingdef_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thingdef/thingdef_properties.cpp b/src/thingdef/thingdef_properties.cpp index 662c868ee..e745c8f03 100644 --- a/src/thingdef/thingdef_properties.cpp +++ b/src/thingdef/thingdef_properties.cpp @@ -629,7 +629,7 @@ DEFINE_PROPERTY(scale, F, Actor) //========================================================================== DEFINE_PROPERTY(floatbobphase, F, Actor) { - PROP_FIXED_PARM(id, 0); + PROP_INT_PARM(id, 0); if (id < -1 || id >= 64) I_Error ("FloatBobPhase must be in range [-1,63]"); defaults->FloatBobPhase = id; }