summaryrefslogtreecommitdiff
path: root/src/components/fs/FS.h
diff options
context:
space:
mode:
authorDaniel Jackson <email@danieljackson.co.uk>2021-09-27 02:42:53 +0100
committerGitHub <noreply@github.com>2021-09-27 02:42:53 +0100
commit7ba00b01577da988565094937e00f70b78e39ecc (patch)
tree792da4544ea2c47bc6f7f1c3c34fc7c05a920209 /src/components/fs/FS.h
parentd03db14129b4f8cc2e691dd6f9e8d8d1ed52b7a1 (diff)
Fix the size of the filesystem.
Correct typo: 0x400000 - 0x0B4000 = 0x34C000.
Diffstat (limited to 'src/components/fs/FS.h')
-rw-r--r--src/components/fs/FS.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/fs/FS.h b/src/components/fs/FS.h
index 1f2eb7e0..75ba16c8 100644
--- a/src/components/fs/FS.h
+++ b/src/components/fs/FS.h
@@ -53,7 +53,7 @@ namespace Pinetime {
*
*/
static constexpr size_t startAddress = 0x0B4000;
- static constexpr size_t size = 0x3C0000;
+ static constexpr size_t size = 0x34C000;
static constexpr size_t blockSize = 4096;
bool resourcesValid = false;