mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Qt/RunOnObject: Fix no result being returned
This commit is contained in:
parent
0979febe78
commit
1f3df1811b
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ auto RunOnObject(QObject* object, F&& functor)
|
|||
{
|
||||
if (m_obj)
|
||||
{
|
||||
(*m_result) = m_func();
|
||||
m_result = m_func();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue