diff options
author | 2021-05-11 21:21:56 +0200 | |
---|---|---|
committer | 2021-05-11 21:52:25 +0200 | |
commit | 94db317064735d4f0126676a827ce63787fb044e (patch) | |
tree | 151caf7aa82acf1c3cf3b5a3ed308c2180dab8dc /src/lib/formats/fs_unformatted.cpp | |
parent | 9d4ffe837e0eb5309cd5d828b660a46d7820d1d7 (diff) |
prodos: Add file and resource reading
Diffstat (limited to 'src/lib/formats/fs_unformatted.cpp')
-rw-r--r-- | src/lib/formats/fs_unformatted.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/formats/fs_unformatted.cpp b/src/lib/formats/fs_unformatted.cpp index 573be8ac2b9..2dc927b70fd 100644 --- a/src/lib/formats/fs_unformatted.cpp +++ b/src/lib/formats/fs_unformatted.cpp @@ -116,4 +116,9 @@ bool fs_unformatted::can_write() const return false; } +bool fs_unformatted::has_rsrc() const +{ + return false; +} + const filesystem_manager_type FS_UNFORMATTED = &filesystem_manager_creator<fs_unformatted>; |