1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 12:42:41 +01:00

overlay; Fix leak

This commit is contained in:
kd-11 2018-05-31 08:43:18 +03:00 committed by kd-11
parent b0ee369135
commit 9f9e1b5fe0

View File

@ -449,8 +449,9 @@ namespace rsx
compiled_resource get_compiled() override
{
m_body.get_compiled().add(m_titles.get_compiled());
return m_body.get_compiled();
auto result = m_body.get_compiled();
result.add(m_titles.get_compiled());
return result;
}
};