mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +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
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue