mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-04 08:27:57 +03:00
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:
parent
bbb3953f76
commit
8b8b4a1c9c
15 changed files with 40 additions and 62 deletions
|
@ -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(...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue