mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
DiscIO: Prefix class member variables with "m_"
This commit is contained in:
parent
5cc0bda3d5
commit
1977ea42ae
17 changed files with 211 additions and 202 deletions
|
@ -106,8 +106,8 @@ private:
|
|||
};
|
||||
#pragma pack(pop)
|
||||
|
||||
u32 lastID;
|
||||
std::string contentMap;
|
||||
u32 m_lastID;
|
||||
std::string m_contentMap;
|
||||
std::vector<SElement> m_Elements;
|
||||
static CSharedContent m_Instance;
|
||||
};
|
||||
|
@ -134,8 +134,8 @@ private:
|
|||
};
|
||||
#pragma pack(pop)
|
||||
|
||||
u32 lastUID;
|
||||
std::string uidSys;
|
||||
u32 m_lastUID;
|
||||
std::string m_uidSys;
|
||||
std::vector<SElement> m_Elements;
|
||||
static cUIDsys m_Instance;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue