mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 21:51:45 +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->buffer_manager = buffer_manager;
|
||||
this->block_size = block_size;
|
||||
this->cache_count = cache_count;
|
||||
this->cache_count = buffer_count;
|
||||
|
||||
/* Allocate the caches. */
|
||||
this->caches.reset(new Cache[buffer_count]);
|
||||
|
|
Loading…
Reference in a new issue