From 571907903de8bc5ec5f3e4b0bdedbdb4c46a7e7e Mon Sep 17 00:00:00 2001 From: Diordany Date: Tue, 28 Nov 2023 16:36:47 +0100 Subject: [PATCH] Use case sensitive string compare for game directories --- Quake/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/common.c b/Quake/common.c index 5e32afa6b..02c4cbb85 100644 --- a/Quake/common.c +++ b/Quake/common.c @@ -2189,7 +2189,7 @@ static void COM_Game_f (void) } } - if (!q_strcasecmp(p, COM_SkipPath(com_gamedir))) //no change + if (!Q_strcmp(p, COM_SkipPath(com_gamedir))) //no change { if (com_searchpaths->path_id > 1) { //current game not id1 if (*p2 && com_searchpaths->path_id == 2) {