Use case-insensitive game folder matches for Windows (bug 3913, r=pred).
This commit is contained in:
parent
4fc378d3e2
commit
0cae3ac5a1
@ -92,7 +92,11 @@ bool s_ServerBinCRC_Ok = false;
|
|||||||
|
|
||||||
static bool DoesGameMatch(const char *value)
|
static bool DoesGameMatch(const char *value)
|
||||||
{
|
{
|
||||||
|
#if defined PLATFORM_WINDOWS
|
||||||
|
if (strcasecmp(value, g_Game) == 0 ||
|
||||||
|
#else
|
||||||
if (strcmp(value, g_Game) == 0 ||
|
if (strcmp(value, g_Game) == 0 ||
|
||||||
|
#endif
|
||||||
strcmp(value, g_GameDesc) == 0 ||
|
strcmp(value, g_GameDesc) == 0 ||
|
||||||
strcmp(value, g_GameName) == 0)
|
strcmp(value, g_GameName) == 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user