aboutsummaryrefslogtreecommitdiffstats
path: root/src/filesystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/filesystem.c')
-rw-r--r--src/filesystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filesystem.c b/src/filesystem.c
index 69e23f7..5732e40 100644
--- a/src/filesystem.c
+++ b/src/filesystem.c
@@ -3,11 +3,11 @@
3// Note that the filename should include the null terminator if we want to use 3// Note that the filename should include the null terminator if we want to use
4// strcmp. 4// strcmp.
5#define FILE_NAME_SIZE 27 5#define FILE_NAME_SIZE 27
6#define FILE_CAPACITY 63 6#define FILE_CAPACITY 4
7#define FILE_HEADER_OFFSET 2 7#define FILE_HEADER_OFFSET 2
8#define FILE_INDEX_OFFSET 32 8#define FILE_INDEX_OFFSET 32
9#define FILE_DATA_OFFSET KB(2) 9#define FILE_DATA_OFFSET KB(2)
10#define FILE_MAX_SIZE KB(1) 10#define FILE_MAX_SIZE KB(16)
11#define SRAM ((vu8*)(MEM_CART)) 11#define SRAM ((vu8*)(MEM_CART))
12 12
13typedef struct File { 13typedef struct File {