Changeset 322
- Timestamp:
- 09/20/08 06:07:36 (2 months ago)
- Files:
-
- GtkRadiant/trunk/tools/quake3/q3map2/bspfile_ibsp.c (modified) (1 diff)
- GtkRadiant/trunk/tools/quake3/q3map2/game_etut.h (modified) (1 diff)
- GtkRadiant/trunk/tools/quake3/q3map2/game_nexuiz.h (added)
- GtkRadiant/trunk/tools/quake3/q3map2/game_quake3.h (modified) (1 diff)
- GtkRadiant/trunk/tools/quake3/q3map2/game_quakelive.h (added)
- GtkRadiant/trunk/tools/quake3/q3map2/game_wolf.h (modified) (1 diff)
- GtkRadiant/trunk/tools/quake3/q3map2/game_wolfet.h (modified) (1 diff)
- GtkRadiant/trunk/tools/quake3/q3map2/q3map2.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GtkRadiant/trunk/tools/quake3/q3map2/bspfile_ibsp.c
r319 r322 515 515 516 516 /* advertisements */ 517 numBSPAds = CopyLump( (bspHeader_t*) header, LUMP_ADVERTISEMENTS, bspAds, sizeof( bspAdvertisement_t ) ); 517 if(header->version == 47) // quake live's bsp version 518 numBSPAds = CopyLump( (bspHeader_t*) header, LUMP_ADVERTISEMENTS, bspAds, sizeof( bspAdvertisement_t ) ); 519 else 520 numBSPAds = 0; 518 521 519 522 /* free the file buffer */ GtkRadiant/trunk/tools/quake3/q3map2/game_etut.h
r302 r322 151 151 1.0f, /* lightmap compensate */ 152 152 "IBSP", /* bsp file prefix */ 153 4 7, /* bsp file version */153 46, /* bsp file version */ 154 154 qfalse, /* cod-style lump len/ofs order */ 155 155 LoadIBSPFile, /* bsp load function */ GtkRadiant/trunk/tools/quake3/q3map2/game_quake3.h
r319 r322 115 115 1.0f, /* lightmap compensate */ 116 116 "IBSP", /* bsp file prefix */ 117 4 7, /* bsp file version */117 46, /* bsp file version */ 118 118 qfalse, /* cod-style lump len/ofs order */ 119 119 LoadIBSPFile, /* bsp load function */ GtkRadiant/trunk/tools/quake3/q3map2/game_wolf.h
r302 r322 132 132 1.0f, /* lightmap compensate */ 133 133 "IBSP", /* bsp file prefix */ 134 4 7, /* bsp file version */134 46, /* bsp file version */ 135 135 qfalse, /* cod-style lump len/ofs order */ 136 136 LoadIBSPFile, /* bsp load function */ GtkRadiant/trunk/tools/quake3/q3map2/game_wolfet.h
r302 r322 69 69 1.0f, /* lightmap compensate */ 70 70 "IBSP", /* bsp file prefix */ 71 4 7, /* bsp file version */71 46, /* bsp file version */ 72 72 qfalse, /* cod-style lump len/ofs order */ 73 73 LoadIBSPFile, /* bsp load function */ GtkRadiant/trunk/tools/quake3/q3map2/q3map2.h
r319 r322 1834 1834 #include "game_quake3.h" 1835 1835 , 1836 #include "game_quakelive.h"/* most be after game_quake3.h as they share defines! */ 1837 , 1838 #include "game_nexuiz.h"/* most be after game_quake3.h as they share defines! */ 1839 , 1836 1840 #include "game_tremulous.h" /*LinuxManMikeC: must be after game_quake3.h, depends on #define's set in it */ 1837 1841 ,
