- Nov 24, 2017
- 123
- 248
Your browser local storage is full. A lot of HTML games do REALLY stupid things with local storage, like serializing entire game state class instances and loading them as a lazy way of doing save/loads. It works, but it's slow and devours local storage like nothing else.I've been getting this everytime I try to save in every HTML game. Anyway to fix this?
View attachment 3772293
Browsers limit local storage to 5MB (give or take; different browsers use different values but it's all roughly in that ballpark) for performance reasons so greedy sites can easily run you completely out.
What browser are you using?