mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-09 19:41:04 +00:00
more cleanups
This commit is contained in:
parent
de8105beb4
commit
8557f1820f
2 changed files with 5 additions and 5 deletions
|
@ -63,9 +63,9 @@ void ExportEntities( void ){
|
||||||
strcat( filename, ".ent" );
|
strcat( filename, ".ent" );
|
||||||
|
|
||||||
/* sanity check */
|
/* sanity check */
|
||||||
if ( bspEntData == NULL || bspEntDataSize == 0 ) {
|
if ( bspEntDataSize == 0 ) {
|
||||||
Sys_FPrintf( SYS_WRN, "WARNING: No BSP entity data. aborting...\n" );
|
Sys_FPrintf( SYS_WRN, "WARNING: No BSP entity data. aborting...\n" );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* write it */
|
/* write it */
|
||||||
|
@ -109,4 +109,4 @@ int ExportEntitiesMain( int argc, char **argv ){
|
||||||
|
|
||||||
/* return to sender */
|
/* return to sender */
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -622,7 +622,7 @@ typedef struct foliage_s
|
||||||
struct foliage_s *next;
|
struct foliage_s *next;
|
||||||
char model[ MAX_QPATH ];
|
char model[ MAX_QPATH ];
|
||||||
float scale, density, odds;
|
float scale, density, odds;
|
||||||
qboolean inverseAlpha;
|
int inverseAlpha;
|
||||||
}
|
}
|
||||||
foliage_t;
|
foliage_t;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue