mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-27 13:14:15 -04:00
strat: use m_ for member variables
This commit is contained in:
parent
ce28591ab2
commit
a595c232b9
425 changed files with 8531 additions and 8484 deletions
|
@ -49,7 +49,7 @@ namespace ams::updater {
|
|||
}
|
||||
|
||||
Result BisAccessor::Initialize() {
|
||||
return fs::OpenBisPartition(std::addressof(this->storage), this->partition_id);
|
||||
return fs::OpenBisPartition(std::addressof(m_storage), m_partition_id);
|
||||
}
|
||||
|
||||
void BisAccessor::Finalize() {
|
||||
|
@ -58,12 +58,12 @@ namespace ams::updater {
|
|||
|
||||
Result BisAccessor::Read(void *dst, size_t size, u64 offset) {
|
||||
AMS_ABORT_UNLESS((offset % SectorAlignment) == 0);
|
||||
return this->storage->Read(static_cast<u32>(offset), dst, size);
|
||||
return m_storage->Read(static_cast<u32>(offset), dst, size);
|
||||
}
|
||||
|
||||
Result BisAccessor::Write(u64 offset, const void *src, size_t size) {
|
||||
AMS_ABORT_UNLESS((offset % SectorAlignment) == 0);
|
||||
return this->storage->Write(static_cast<u32>(offset), src, size);
|
||||
return m_storage->Write(static_cast<u32>(offset), src, size);
|
||||
}
|
||||
|
||||
Result BisAccessor::Write(u64 offset, size_t size, const char *bip_path, void *work_buffer, size_t work_buffer_size) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue