1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

Fixed MetamodVersionInfo::GetGameDir always returning NULL or garbage.

This commit is contained in:
Nicholas Hastings 2013-08-03 13:56:58 -04:00
parent afdef67174
commit 17ae4f0c49

View File

@ -139,7 +139,7 @@ struct MetamodVersionInfo
*/ */
inline const char *GetGameDir() const inline const char *GetGameDir() const
{ {
if (pl_max >= 15) if (pl_max < 15)
return NULL; return NULL;
return game_dir; return game_dir;
} }