From b3f50c969eef54c07b28860be6c8e172e03daaed Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 6 Jun 2025 19:24:12 -0500 Subject: VideoCommon: rename m_bytes_loaded in asset library to bytes_loaded --- Source/Core/VideoCommon/Assets/TextureAsset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/Assets/TextureAsset.cpp') diff --git a/Source/Core/VideoCommon/Assets/TextureAsset.cpp b/Source/Core/VideoCommon/Assets/TextureAsset.cpp index 0b3deecca7..fc6c865f76 100644 --- a/Source/Core/VideoCommon/Assets/TextureAsset.cpp +++ b/Source/Core/VideoCommon/Assets/TextureAsset.cpp @@ -258,7 +258,7 @@ CustomAssetLibrary::LoadInfo TextureAsset::LoadImpl(const CustomAssetLibrary::As { auto potential_data = std::make_shared(); const auto loaded_info = m_owning_library->LoadTexture(asset_id, potential_data.get()); - if (loaded_info.m_bytes_loaded == 0) + if (loaded_info.bytes_loaded == 0) return {}; { std::lock_guard lk(m_data_lock); -- cgit v1.2.3