mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Fix missing clamps for stvef
This commit is contained in:
parent
3b8916b877
commit
f502093f8e
1 changed files with 2 additions and 2 deletions
|
@ -382,8 +382,8 @@ void Eclass_Init(){
|
|||
if ( !strcmp( ValueForKey( g_qeglobals.d_project_entity, "gamemode" ), "sp" ) ) {
|
||||
// SP mapping, ignore mp_*.def
|
||||
char *name = (char *)pFile->data;
|
||||
if ( name[0] == 'm' && name[1] == 'p' && name[2] == '_'
|
||||
|| name[0] == 'h' && name[1] == 'm' && name[2] == '_' ) {
|
||||
if ( ( name[0] == 'm' && name[1] == 'p' && name[2] == '_' )
|
||||
|| ( name[0] == 'h' && name[1] == 'm' && name[2] == '_' ) ) {
|
||||
Sys_Printf( "Single Player mapping mode. Ignoring '%s'\n", name );
|
||||
pFile = pFile->next;
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue