diff options
author | CrystalP <CrystalP@xbmc.org> | 2011-01-06 20:30:17 -0500 |
---|---|---|
committer | CrystalP <CrystalP@xbmc.org> | 2011-01-06 20:30:17 -0500 |
commit | 1c5bfa4b2bea45f35daa6332dce9418a63a43273 (patch) | |
tree | 53a73463fe6b466d3c83855dc0cd1b5077c2d566 | |
parent | 569648f2a3b8e094c33d102edd41397ca04b07be (diff) |
[WIN32] fix build after the git rev number change. Doesn't report the proper git commit yet.
-rw-r--r-- | xbmc/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index cbef7ba784..6d1ca5129c 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -503,7 +503,7 @@ bool CApplication::Create() #elif defined(_LINUX) CLog::Log(LOGNOTICE, "Starting XBMC, Platform: Linux (%s, %s). Built on %s (Git:%s)", g_sysinfo.GetLinuxDistro().c_str(), g_sysinfo.GetUnameVersion().c_str(), __DATE__, GIT_REV); #elif defined(_WIN32) - CLog::Log(LOGNOTICE, "Starting XBMC, Platform: %s. Built on %s (SVN:%s, compiler %i)",g_sysinfo.GetKernelVersion().c_str(), __DATE__, SVN_REV, _MSC_VER); + CLog::Log(LOGNOTICE, "Starting XBMC, Platform: %s. Built on %s (Git:%s, compiler %i)",g_sysinfo.GetKernelVersion().c_str(), __DATE__, GIT_REV, _MSC_VER); CLog::Log(LOGNOTICE, g_cpuInfo.getCPUModel().c_str()); CLog::Log(LOGNOTICE, CWIN32Util::GetResInfoString()); CLog::Log(LOGNOTICE, "Running with %s rights", (CWIN32Util::IsCurrentUserLocalAdministrator() == TRUE) ? "administrator" : "restricted"); |