VideoCommon: fix minor issue in C++ template

This commit is contained in:
iwubcode 2023-06-03 12:47:12 -05:00
parent 80bf175c48
commit 9b9dc6dc5d
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;
}