aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2014-10-20 21:52:00 +0200
committermontellese <montellese@xbmc.org>2014-10-20 21:52:00 +0200
commita62781109aad034aa4ae04156bc6bd66deda96e1 (patch)
tree59813a673106a1b322122d6ea0bb471cf05862a7
parent9a16e5d4fbb8c7d08563e76b04f375c111d1f5f5 (diff)
[win32] rename XBMC_HOME to APP_HOME
-rw-r--r--project/VS2010Express/XBMC.defaults.props2
-rw-r--r--xbmc/Application.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/project/VS2010Express/XBMC.defaults.props b/project/VS2010Express/XBMC.defaults.props
index a1ebbcab1a..8d98c20bb7 100644
--- a/project/VS2010Express/XBMC.defaults.props
+++ b/project/VS2010Express/XBMC.defaults.props
@@ -7,7 +7,7 @@
<PropertyGroup>
<IncludePath>$(SolutionDir)\..\BuildDependencies\include;$(SolutionDir)\..\BuildDependencies\include\python;$(IncludePath)</IncludePath>
<ExecutablePath>$(SolutionDir)\..\..\tools\win32buildtools;$(ExecutablePath)</ExecutablePath>
- <LocalDebuggerEnvironment>XBMC_HOME=$(SolutionDir)..\..&#xD;&#xA;PATH=$(SolutionDir)..\Win32BuildSetup\dependencies;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>APP_HOME=$(SolutionDir)..\..&#xD;&#xA;PATH=$(SolutionDir)..\Win32BuildSetup\dependencies;%PATH%</LocalDebuggerEnvironment>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp
index 3e93257785..8e140d944f 100644
--- a/xbmc/Application.cpp
+++ b/xbmc/Application.cpp
@@ -1251,7 +1251,7 @@ bool CApplication::InitDirectoriesWin32()
CStdString xbmcPath;
CUtil::GetHomePath(xbmcPath);
- CEnvironment::setenv("XBMC_HOME", xbmcPath);
+ CEnvironment::setenv("APP_HOME", xbmcPath);
CSpecialProtocol::SetXBMCBinPath(xbmcPath);
CSpecialProtocol::SetXBMCPath(xbmcPath);