Use \My Documents\My Games\ on Windows. This aligns us with NetRadiant and the actual location of this folder on Windows systems. It was an error to use /Users/jdolan\My Games. That's not a thing.

This commit is contained in:
Jay Dolan 2015-03-08 11:31:53 -04:00
parent 6a5412d95c
commit 7cd4aa4fe0
1 changed files with 1 additions and 1 deletions

View File

@ -1321,7 +1321,7 @@ void CGameDialog::Init(){
g_qeglobals.m_strHomeGame += "/";
#elif defined ( _WIN32 )
g_qeglobals.m_strHomeGame = g_get_home_dir();
g_qeglobals.m_strHomeGame += "\\My Games\\";
g_qeglobals.m_strHomeGame += "\\My Documents\\My Games\\";
g_qeglobals.m_strHomeGame += m_pCurrentGameDescription->mUserPathPrefix.GetBuffer();
g_qeglobals.m_strHomeGame += "\\";
#endif