mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
Merge pull request #11883 from iwubcode/asset_template_error
VideoCommon: fix issue in C++ template
This commit is contained in:
commit
252d3f353a
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public:
|
||||||
{
|
{
|
||||||
std::lock_guard lk(m_lock);
|
std::lock_guard lk(m_lock);
|
||||||
if (m_loaded)
|
if (m_loaded)
|
||||||
return &m_data;
|
return m_data;
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue