mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
commit
d9d8bc1ed7
5 changed files with 2 additions and 8 deletions
|
@ -449,10 +449,6 @@ eclass_t *Eclass_ForName( const char *name, qboolean has_brushes ){
|
|||
}
|
||||
#endif
|
||||
|
||||
if ( !name ) {
|
||||
return eclass_bad;
|
||||
}
|
||||
|
||||
for ( e = eclass ; e ; e = e->next )
|
||||
if ( !strcmp( name, e->name ) ) {
|
||||
return e;
|
||||
|
|
|
@ -1017,7 +1017,6 @@ static void ParseShaderFile( const char *filename ){
|
|||
!Q_stricmp( token, "clampMap" ) ||
|
||||
!Q_stricmp( token, "animMap" ) ||
|
||||
!Q_stricmp( token, "clampAnimMap" ) ||
|
||||
!Q_stricmp( token, "clampMap" ) ||
|
||||
!Q_stricmp( token, "mapComp" ) ||
|
||||
!Q_stricmp( token, "mapNoComp" ) ) {
|
||||
/* skip one token for animated stages */
|
||||
|
|
|
@ -616,7 +616,7 @@ int EdgeCompare( const void *elem1, const void *elem2 ) {
|
|||
if ( d1 < d2 ) {
|
||||
return -1;
|
||||
}
|
||||
if ( d2 > d1 ) {
|
||||
if ( d2 < d1 ) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
|
@ -1015,7 +1015,6 @@ static void ParseShaderFile( const char *filename ){
|
|||
!Q_stricmp( token, "clampMap" ) ||
|
||||
!Q_stricmp( token, "animMap" ) ||
|
||||
!Q_stricmp( token, "clampAnimMap" ) ||
|
||||
!Q_stricmp( token, "clampMap" ) ||
|
||||
!Q_stricmp( token, "mapComp" ) ||
|
||||
!Q_stricmp( token, "mapNoComp" ) ) {
|
||||
/* skip one token for animated stages */
|
||||
|
|
|
@ -616,7 +616,7 @@ int EdgeCompare( const void *elem1, const void *elem2 ) {
|
|||
if ( d1 < d2 ) {
|
||||
return -1;
|
||||
}
|
||||
if ( d2 > d1 ) {
|
||||
if ( d2 < d1 ) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue