mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
overlay; Fix leak
This commit is contained in:
parent
b0ee369135
commit
9f9e1b5fe0
1 changed files with 3 additions and 2 deletions
|
@ -449,8 +449,9 @@ namespace rsx
|
||||||
|
|
||||||
compiled_resource get_compiled() override
|
compiled_resource get_compiled() override
|
||||||
{
|
{
|
||||||
m_body.get_compiled().add(m_titles.get_compiled());
|
auto result = m_body.get_compiled();
|
||||||
return m_body.get_compiled();
|
result.add(m_titles.get_compiled());
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue