diff options
author | 2023-09-27 03:48:50 -0400 | |
---|---|---|
committer | 2023-09-27 09:48:50 +0200 | |
commit | d8f1b27939216dc6666e1a334f38204e17509ceb (patch) | |
tree | e84c4202946dab61afe800d02b4e20cb1f25e602 /src/lib/formats/fs_vtech.cpp | |
parent | 7edf0aa2abba2bef57b477fa1af0fed7213647c2 (diff) |
Filesystem code refactoring (#11570)
- Separate fs::block_t and fs::filesystem_t to a new source file and header
- Remove inclusion of flopimg.h from fsmgr.h
Diffstat (limited to 'src/lib/formats/fs_vtech.cpp')
-rw-r--r-- | src/lib/formats/fs_vtech.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/formats/fs_vtech.cpp b/src/lib/formats/fs_vtech.cpp index cea8d4c15fa..27e7f93a056 100644 --- a/src/lib/formats/fs_vtech.cpp +++ b/src/lib/formats/fs_vtech.cpp @@ -4,6 +4,7 @@ // Management of VTech images #include "fs_vtech.h" +#include "fsblk.h" #include "vt_dsk.h" #include "multibyte.h" |