From 6bff17ed5fc46efd5ef4d6acf5ddc37fed0d6c07 Mon Sep 17 00:00:00 2001 From: Ensiform Date: Thu, 23 Nov 2023 09:32:20 -0600 Subject: [PATCH] Fix etpro still being visible in mods menu on non supported platforms --- src/qcommon/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qcommon/files.c b/src/qcommon/files.c index da58245e..a88f35d6 100644 --- a/src/qcommon/files.c +++ b/src/qcommon/files.c @@ -4280,7 +4280,7 @@ static int FS_GetModList( char *listbuf, int bufsize ) { if ( Sys_IsHiddenFolder( name ) ) { continue; } -#ifndef id386 +#if !id386 // drop etpro because compatibility if ( !Q_stricmp( name, "etpro" ) ) { continue;