1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

fssystem: fix bug in BufferedStorage

This commit is contained in:
Michael Scire 2020-12-02 06:48:42 -08:00
parent 525da05629
commit b8fbd0baff

View file

@ -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]);