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/CustomAsset.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/Assets/CustomAsset.cpp') diff --git a/Source/Core/VideoCommon/Assets/CustomAsset.cpp b/Source/Core/VideoCommon/Assets/CustomAsset.cpp index 60c7f1ee12..ab82f03a95 100644 --- a/Source/Core/VideoCommon/Assets/CustomAsset.cpp +++ b/Source/Core/VideoCommon/Assets/CustomAsset.cpp @@ -19,10 +19,10 @@ std::size_t CustomAsset::Load() const auto load_time = ClockType::now(); const auto load_information = LoadImpl(m_asset_id); - if (load_information.m_bytes_loaded > 0) + if (load_information.bytes_loaded > 0) { std::lock_guard lk(m_info_lock); - m_bytes_loaded = load_information.m_bytes_loaded; + m_bytes_loaded = load_information.bytes_loaded; m_last_loaded_time = load_time; return m_bytes_loaded; } -- cgit v1.2.3