Compilation fixes due to changes in StdStreamUtils.

Added support for the presentation params system on Win32 port.

git-svn-id: http://svn.purei.org/purei/trunk@989 b36208d7-6611-0410-8bec-b1987f11c4a2
This commit is contained in:
jpd002 2012-09-06 06:32:15 +00:00
parent bbb3953f76
commit 8b8b4a1c9c
15 changed files with 40 additions and 62 deletions

View file

@ -398,9 +398,8 @@ void CMemoryCardView::CRender::DrawScene()
const CSave* pSave = m_memoryCard->GetSaveByIndex(i);
try
{
boost::scoped_ptr<Framework::CStdStream> iconStream(
Framework::CreateInputStdStream(pSave->GetNormalIconPath().native()));
IconPtr iconData(new CIcon(*iconStream));
auto iconStream(Framework::CreateInputStdStream(pSave->GetNormalIconPath().native()));
IconPtr iconData(new CIcon(iconStream));
iconMesh = IconMeshPtr(new CIconMesh(iconData));
}
catch(...)