mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
VolumeDirectory: Pass std::string by reference for SetUniqueID/SetName
This commit is contained in:
parent
64b09582c6
commit
56bc58b9f4
2 changed files with 4 additions and 4 deletions
|
@ -36,12 +36,12 @@ public:
|
|||
bool RAWRead(u64 _Offset, u64 _Length, u8* _pBuffer) const override;
|
||||
|
||||
std::string GetUniqueID() const override;
|
||||
void SetUniqueID(std::string _ID);
|
||||
void SetUniqueID(const std::string& _ID);
|
||||
|
||||
std::string GetMakerID() const override;
|
||||
|
||||
std::vector<std::string> GetNames() const override;
|
||||
void SetName(std::string);
|
||||
void SetName(const std::string&);
|
||||
|
||||
u32 GetFSTSize() const override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue