fs: int -> s32 in FatFatError

This commit is contained in:
Michael Scire 2023-10-25 16:22:22 -07:00
parent cad16f58bf
commit 1c63561283

View File

@ -350,9 +350,9 @@ typedef struct {
/// FatFatError
typedef struct {
int error;
int extra_error;
int drive_id;
s32 error;
s32 extra_error;
s32 drive_id;
char name[16];
u8 reserved[4];
} FatFatError;