Volume/VolumeGC/VolumeWii: Amend variable naming

Drops prefixed underscores and normalizes names to follow our coding
style.
This commit is contained in:
Lioncash
2018-05-30 02:37:13 -04:00
parent ae4aa0b25c
commit 66122f037e
5 changed files with 74 additions and 72 deletions

View File

@ -43,7 +43,7 @@ class Volume
public:
Volume() {}
virtual ~Volume() {}
virtual bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, const Partition& partition) const = 0;
virtual bool Read(u64 offset, u64 length, u8* buffer, const Partition& partition) const = 0;
template <typename T>
std::optional<T> ReadSwapped(u64 offset, const Partition& partition) const
{