mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
Use static instead of LUNATIC_EXTERN
# Conflicts: # source/build/include/build.h # source/duke3d/src/gamedef.cpp
This commit is contained in:
parent
6a70389f1d
commit
ec11d22caf
6 changed files with 5 additions and 6 deletions
|
@ -69,7 +69,6 @@ enum rendmode_t {
|
|||
# define M32_FIXME_WALLS 512
|
||||
# define M32_FIXME_SECTORS 2
|
||||
|
||||
# define LUNATIC_EXTERN static
|
||||
|
||||
#define MAXWALLSB ((MAXWALLS>>2)+(MAXWALLS>>3))
|
||||
|
||||
|
|
|
@ -844,7 +844,7 @@ void A_DoGutsDir(int spriteNum, int tileNum, int spawnCnt)
|
|||
}
|
||||
#endif
|
||||
|
||||
LUNATIC_EXTERN int32_t G_ToggleWallInterpolation(int32_t wallNum, int32_t setInterpolation)
|
||||
static int32_t G_ToggleWallInterpolation(int32_t wallNum, int32_t setInterpolation)
|
||||
{
|
||||
if (setInterpolation)
|
||||
{
|
||||
|
|
|
@ -2119,7 +2119,7 @@ void C_FreeProjectile(int32_t j)
|
|||
}
|
||||
|
||||
|
||||
LUNATIC_EXTERN void C_DefineProjectile(int32_t j, int32_t what, int32_t val)
|
||||
static void C_DefineProjectile(int32_t j, int32_t what, int32_t val)
|
||||
{
|
||||
if (g_tile[j].proj == NULL)
|
||||
{
|
||||
|
|
|
@ -1132,7 +1132,7 @@ static int G_StartTrackSlotWrap(int const volumeNum, int const levelNum)
|
|||
return 0;
|
||||
}
|
||||
|
||||
LUNATIC_EXTERN void G_ShowView(vec3_t vec, fix16_t a, fix16_t horiz, int sect, int ix1, int iy1, int ix2, int iy2, int unbiasedp)
|
||||
static void G_ShowView(vec3_t vec, fix16_t a, fix16_t horiz, int sect, int ix1, int iy1, int ix2, int iy2, int unbiasedp)
|
||||
{
|
||||
int x1 = min(ix1, ix2);
|
||||
int x2 = max(ix1, ix2);
|
||||
|
|
|
@ -42,7 +42,7 @@ struct dynitem
|
|||
const int16_t staticval;
|
||||
};
|
||||
|
||||
LUNATIC_EXTERN struct dynitem g_dynTileList[] =
|
||||
static struct dynitem g_dynTileList[] =
|
||||
{
|
||||
{ "ACCESS_ICON", DVPTR(ACCESS_ICON), ACCESS_ICON__STATIC },
|
||||
{ "ACCESSCARD", DVPTR(ACCESSCARD), ACCESSCARD__STATIC },
|
||||
|
|
|
@ -47,7 +47,7 @@ struct dynitem
|
|||
const int16_t staticval;
|
||||
};
|
||||
|
||||
LUNATIC_EXTERN struct dynitem g_dynSoundList[] =
|
||||
static struct dynitem g_dynSoundList[] =
|
||||
{
|
||||
{ "ALIEN_SWITCH1", DVPTR(ALIEN_SWITCH1), ALIEN_SWITCH1__STATIC },
|
||||
{ "BIGBANG", DVPTR(BIGBANG), BIGBANG__STATIC },
|
||||
|
|
Loading…
Reference in a new issue