Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11883 from iwubcode/asset_template_error
VideoCommon: fix issue in C++ template
  • Loading branch information
AdmiralCurtiss committed Jun 3, 2023
2 parents 80bf175 + 9b9dc6d commit 252d3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/Assets/CustomAsset.h
Expand Up @@ -72,7 +72,7 @@ class CustomLoadableAsset : public CustomAsset
{
std::lock_guard lk(m_lock);
if (m_loaded)
return &m_data;
return m_data;
return nullptr;
}

Expand Down

0 comments on commit 252d3f3

Please sign in to comment.