mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
VideoCommon: rename m_bytes_loaded in asset library to bytes_loaded
This commit is contained in:
parent
3b83907b88
commit
b3f50c969e
6 changed files with 7 additions and 7 deletions
|
@ -384,7 +384,7 @@ CustomAssetLibrary::LoadInfo MaterialAsset::LoadImpl(const CustomAssetLibrary::A
|
|||
{
|
||||
auto potential_data = std::make_shared<MaterialData>();
|
||||
const auto loaded_info = m_owning_library->LoadMaterial(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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue