mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-21 20:01:10 +00:00
remove surplus tokens after preprocessor directives
This commit is contained in:
parent
908d2f0880
commit
00934e804e
8 changed files with 9 additions and 9 deletions
|
@ -282,7 +282,7 @@ public:
|
|||
{
|
||||
return 1;
|
||||
}
|
||||
#endif;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -211,4 +211,4 @@ Ghoul2 Insert End
|
|||
|
||||
//----------------------------------------------
|
||||
|
||||
#endif _CG_PUBLIC_H
|
||||
#endif // _CG_PUBLIC_H
|
||||
|
|
|
@ -85,4 +85,4 @@ void G_Roff( gentity_t *ent );
|
|||
void G_SaveCachedRoffs();
|
||||
void G_LoadCachedRoffs();
|
||||
|
||||
#endif`
|
||||
#endif
|
||||
|
|
|
@ -236,7 +236,7 @@ public:
|
|||
SSkinGoreData *initgore):
|
||||
#else
|
||||
float fRadius):
|
||||
#endif ):
|
||||
#endif
|
||||
|
||||
surfaceNum(initsurfaceNum),
|
||||
rootSList(initrootSList),
|
||||
|
|
|
@ -73,5 +73,5 @@ void CM_TM_Upload(vec3_t player_origin, vec3_t player_angles);
|
|||
void CM_TM_SaveImageToDisk(const char * terrainName, const char * missionName, const char * seed);
|
||||
void CM_TM_ConvertPosition(int &x, int &y, int Width, int Height);
|
||||
|
||||
#endif CM_TERRAINMAP_H_INC
|
||||
#endif // CM_TERRAINMAP_H_INC
|
||||
|
||||
|
|
|
@ -832,7 +832,7 @@ void CM_TraceThroughTree( traceWork_t *tw, clipMap_t *local, int num, float p1f,
|
|||
|
||||
#ifdef _XBOX
|
||||
plane = cmg.planes + tr.world->nodes[num].planeNum;
|
||||
#else mnode_s
|
||||
#else
|
||||
plane = node->plane;
|
||||
#endif
|
||||
|
||||
|
|
|
@ -845,6 +845,6 @@ struct Lump
|
|||
}
|
||||
}
|
||||
};
|
||||
#endif _XBOX
|
||||
#endif // _XBOX
|
||||
|
||||
#endif //__QCOMMON_H__
|
||||
#endif //__QCOMMON_H__
|
||||
|
|
|
@ -568,7 +568,7 @@ typedef struct {
|
|||
int patchHeight;
|
||||
} dsurface_t;
|
||||
|
||||
#endif _XBOX
|
||||
#endif // _XBOX
|
||||
|
||||
typedef enum //# hunkAllocType_e
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue