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
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public:
{
std::lock_guard lk(m_lock);
if (m_loaded)
return &m_data;
return m_data;
return nullptr;
}