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
commit 252d3f353a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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