Fix screwed up whitespace in files.c

Apologies to anyone merging this :(
This commit is contained in:
Tim Angus 2013-01-13 22:17:10 +00:00
parent 5fd456ff7c
commit 70b165ee33

View file

@ -3172,12 +3172,12 @@ static void FS_Startup( const char *gameName )
} }
// fs_homepath is somewhat particular to *nix systems, only add if relevant // fs_homepath is somewhat particular to *nix systems, only add if relevant
#ifdef MACOS_X #ifdef MACOS_X
fs_apppath = Cvar_Get ("fs_apppath", Sys_DefaultAppPath(), CVAR_INIT|CVAR_PROTECTED ); fs_apppath = Cvar_Get ("fs_apppath", Sys_DefaultAppPath(), CVAR_INIT|CVAR_PROTECTED );
// Make MacOSX also include the base path included with the .app bundle // Make MacOSX also include the base path included with the .app bundle
if (fs_apppath->string[0]) if (fs_apppath->string[0])
FS_AddGameDirectory(fs_apppath->string, gameName); FS_AddGameDirectory(fs_apppath->string, gameName);
#endif #endif
// NOTE: same filtering below for mods and basegame // NOTE: same filtering below for mods and basegame
if (fs_homepath->string[0] && Q_stricmp(fs_homepath->string,fs_basepath->string)) { if (fs_homepath->string[0] && Q_stricmp(fs_homepath->string,fs_basepath->string)) {