diff options
| author | Daniel Jackson <email@danieljackson.co.uk> | 2021-09-27 01:42:53 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-27 01:42:53 (GMT) |
| commit | 7ba00b01577da988565094937e00f70b78e39ecc (patch) | |
| tree | 792da4544ea2c47bc6f7f1c3c34fc7c05a920209 /src/components/fs | |
| parent | d03db14129b4f8cc2e691dd6f9e8d8d1ed52b7a1 (diff) | |
Fix the size of the filesystem.
Correct typo: 0x400000 - 0x0B4000 = 0x34C000.
Diffstat (limited to 'src/components/fs')
| -rw-r--r-- | src/components/fs/FS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/fs/FS.h b/src/components/fs/FS.h index 1f2eb7e..75ba16c 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; |
