Merge pull request #11883 from iwubcode/asset_template_error

VideoCommon: fix issue in C++ template
This commit is contained in:
Admiral H. Curtiss
2023-06-03 20:00:08 +02:00
committed by GitHub

View File

@ -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;
} }