Revision: 16049
http://xbmc.svn.sourceforge.net/xbmc/?rev=16049&view=rev
Author: elupus
Date: 2008-10-28 23:10:10 +0000 (Tue, 28 Oct 2008)
Log Message:
-----------
fixed: freemem display had been accidentally disabled
Modified Paths:
--------------
trunk/XBMC/xbmc/Application.cpp
Modified: trunk/XBMC/xbmc/Application.cpp
===================================================================
--- trunk/XBMC/xbmc/Application.cpp 2008-10-28 22:08:27 UTC (rev 16048)
+++ trunk/XBMC/xbmc/Application.cpp 2008-10-28 23:10:10 UTC (rev 16049)
@@ -2342,7 +2342,7 @@
{
// reset the window scaling and fade status
RESOLUTION res = g_graphicsContext.GetVideoResolution();
-/* g_graphicsContext.SetRenderingResolution(res, 0, 0, false);
+ g_graphicsContext.SetRenderingResolution(res, 0, 0, false);
CStdStringW wszText;
MEMORYSTATUS stat;
@@ -2351,7 +2351,7 @@
float x = 0.04f * g_graphicsContext.GetWidth() + g_settings.m_ResInfo[res].Overscan.left;
float y = 0.04f * g_graphicsContext.GetHeight() + g_settings.m_ResInfo[res].Overscan.top;
- CGUITextLayout::DrawOutlineText(g_fontManager.GetFont("font13"), x, y, 0xffffffff, 0xff000000, 2, wszText);*/
+ CGUITextLayout::DrawOutlineText(g_fontManager.GetFont("font13"), x, y, 0xffffffff, 0xff000000, 2, wszText);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|