Linux compile fixes.

SVN r1236 (trunk)
This commit is contained in:
Christoph Oelckers 2008-09-19 07:10:14 +00:00
parent 71dd0d0269
commit b2b81fc8ad
4 changed files with 8 additions and 1 deletions

View File

@ -1811,7 +1811,7 @@ float S_GetRolloff(FRolloffInfo *rolloff, float distance, bool logarithmic)
}
else
{
return float((pow(10.f, volume) - 1.) / 9.);
return float((powf(10.f, volume) - 1.) / 9.);
}
}
else

View File

@ -57,6 +57,8 @@
#include "g_level.h"
#include "r_state.h"
#include "cmdlib.h"
#include "r_main.h"
#include "doomstat.h"
// MACROS ------------------------------------------------------------------

View File

@ -40,6 +40,7 @@
#include "SDL.h"
#include "doomtype.h"
#include "doomstat.h"
#include "version.h"
#include "doomdef.h"
#include "cmdlib.h"
@ -61,6 +62,9 @@
#include "hardware.h"
#include "gameconfigfile.h"
#include "m_fixed.h"
#include "g_level.h"
EXTERN_CVAR (String, language)
extern "C"

View File

@ -42,6 +42,7 @@
#include "st_start.h"
#include "doomdef.h"
#include "i_system.h"
#include "c_cvars.h"
// MACROS ------------------------------------------------------------------