diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2025-06-06 19:24:12 -0500 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2025-06-06 23:03:02 -0500 |
| commit | b3f50c969eef54c07b28860be6c8e172e03daaed (patch) | |
| tree | 59b5646df25583024ee63fed771681f231b6d572 /Source/Core/VideoCommon/Assets/MeshAsset.cpp | |
| parent | 3b83907b88756f9d37ed39fa614efbcdc177e803 (diff) | |
VideoCommon: rename m_bytes_loaded in asset library to bytes_loaded
Diffstat (limited to 'Source/Core/VideoCommon/Assets/MeshAsset.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Assets/MeshAsset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Assets/MeshAsset.cpp b/Source/Core/VideoCommon/Assets/MeshAsset.cpp index 05a4ba0961..bde8c8aab6 100644 --- a/Source/Core/VideoCommon/Assets/MeshAsset.cpp +++ b/Source/Core/VideoCommon/Assets/MeshAsset.cpp @@ -651,7 +651,7 @@ CustomAssetLibrary::LoadInfo MeshAsset::LoadImpl(const CustomAssetLibrary::Asset { auto potential_data = std::make_shared<MeshData>(); const auto loaded_info = m_owning_library->LoadMesh(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); |
