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:
parent
b0ee369135
commit
9f9e1b5fe0
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user