Merge branch 'master' into floatcvt
# Conflicts: # src/dobjtype.cpp # src/dobjtype.h # src/version.h
This commit is contained in:
commit
fd27c8db9e
13 changed files with 1220 additions and 101 deletions
|
|
@ -2745,6 +2745,22 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_LogInt)
|
|||
return 0;
|
||||
}
|
||||
|
||||
//=========================================================================
|
||||
//
|
||||
// A_LogFloat
|
||||
//
|
||||
//===========================================================================
|
||||
|
||||
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_LogFloat)
|
||||
{
|
||||
PARAM_ACTION_PROLOGUE;
|
||||
PARAM_FLOAT(num);
|
||||
IGNORE_FORMAT_PRE
|
||||
Printf("%H\n", num);
|
||||
IGNORE_FORMAT_POST
|
||||
return 0;
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
//
|
||||
// A_SetTranslucent
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue