- Fixed: A_Explode wants the distance parameter as an int, not a fixed_t.

- some minor DECORATE fixes.


SVN r1173 (trunk)
This commit is contained in:
Christoph Oelckers 2008-08-16 08:11:39 +00:00
commit fcdef6a0de
9 changed files with 20 additions and 15 deletions

View file

@ -565,7 +565,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_Explode)
{
ACTION_PARAM_START(4);
ACTION_PARAM_INT(damage, 0);
ACTION_PARAM_FIXED(distance, 1);
ACTION_PARAM_INT(distance, 1);
ACTION_PARAM_BOOL(hurtSource, 2);
ACTION_PARAM_BOOL(alert, 3);