[WIN32] fix build after the git rev number change. Doesn't report the proper git...
authorCrystalP <CrystalP@xbmc.org>
Fri, 7 Jan 2011 01:30:17 +0000 (20:30 -0500)
committermontellese <sascha.montellese@gmail.com>
Sun, 6 Feb 2011 09:53:14 +0000 (10:53 +0100)
(cherry picked from commit 1c5bfa4b2bea45f35daa6332dce9418a63a43273)

xbmc/Application.cpp

index 624e9ef..eb63748 100644 (file)
@@ -497,7 +497,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");