From 9b9dc6dc5d6eb5ab403dab3bc51f7b3f7131158f Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 3 Jun 2023 12:47:12 -0500 Subject: [PATCH] VideoCommon: fix minor issue in C++ template --- Source/Core/VideoCommon/Assets/CustomAsset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Assets/CustomAsset.h b/Source/Core/VideoCommon/Assets/CustomAsset.h index 1f4d5061c1..6fd890e4bc 100644 --- a/Source/Core/VideoCommon/Assets/CustomAsset.h +++ b/Source/Core/VideoCommon/Assets/CustomAsset.h @@ -72,7 +72,7 @@ public: { std::lock_guard lk(m_lock); if (m_loaded) - return &m_data; + return m_data; return nullptr; }