mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-01-10 19:36:19 +00:00
fssystem: fix bug in BufferedStorage
This commit is contained in:
parent
525da05629
commit
b8fbd0baff
1 changed files with 1 additions and 1 deletions
|
@ -601,7 +601,7 @@ namespace ams::fssystem::save {
|
||||||
this->base_storage = base_storage;
|
this->base_storage = base_storage;
|
||||||
this->buffer_manager = buffer_manager;
|
this->buffer_manager = buffer_manager;
|
||||||
this->block_size = block_size;
|
this->block_size = block_size;
|
||||||
this->cache_count = cache_count;
|
this->cache_count = buffer_count;
|
||||||
|
|
||||||
/* Allocate the caches. */
|
/* Allocate the caches. */
|
||||||
this->caches.reset(new Cache[buffer_count]);
|
this->caches.reset(new Cache[buffer_count]);
|
||||||
|
|
Loading…
Reference in a new issue