mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 09:39:13 +00:00
CustomAssetLibrary: Remove unnecessary qualifier in LoadInfo
The type is already in visible scope, so we don't need the rather length qualifier.
This commit is contained in:
parent
b85902ccb5
commit
04011373f3
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ public:
|
||||||
struct LoadInfo
|
struct LoadInfo
|
||||||
{
|
{
|
||||||
std::size_t m_bytes_loaded = 0;
|
std::size_t m_bytes_loaded = 0;
|
||||||
CustomAssetLibrary::TimeType m_load_time = {};
|
TimeType m_load_time = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual ~CustomAssetLibrary() = default;
|
virtual ~CustomAssetLibrary() = default;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue