diff options
author | 2021-12-31 13:27:44 -0500 | |
---|---|---|
committer | 2021-12-31 13:28:25 -0500 | |
commit | f6f77bf6398cd6b06ce6778fafc772ed42261a3e (patch) | |
tree | c4da0575a94f49f3399d4754cac951d26837f573 /src/lib/formats/all.cpp | |
parent | 54899379258a7266db8d5bc6cda8b48169e67503 (diff) |
Move filesystem library into separate namespace and use shorter uX type names there
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r-- | src/lib/formats/all.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp index d9e7839828d..7be97cec4f7 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -687,7 +687,7 @@ void mame_formats_full_list(mame_formats_enumerator &en) { en.category("Generic"); - en.add(FS_UNFORMATTED); + en.add(fs::UNFORMATTED); en.add(cassette_default_formats); #ifdef HAS_FORMATS_UEF_CAS en.add(uef_cassette_formats); // uef_cas.h @@ -711,7 +711,7 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.category("Apple"); #ifdef HAS_FORMATS_FS_PRODOS - en.add(FS_PRODOS); + en.add(fs::PRODOS); #endif #ifdef HAS_FORMATS_AP2_DSK en.add(FLOPPY_A216S_FORMAT); // ap2_dsk.h @@ -1144,7 +1144,7 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.add(FLOPPY_ORIC_JASMIN_FORMAT); // oric_dsk.h #endif #ifdef HAS_FORMATS_FS_ORIC_JASMIN - en.add(FS_ORIC_JASMIN); // fs_oric_jasmin.h + en.add(fs::ORIC_JASMIN); // fs_oric_jasmin.h #endif en.category("Atari"); @@ -1391,7 +1391,7 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.add(FLOPPY_VTECH_DSK_FORMAT); // vt_dsk.h #endif #ifdef HAS_FORMATS_FS_VTECH - en.add(FS_VTECH); // fs_vtech.h + en.add(fs::VTECH); // fs_vtech.h #endif en.category("Canon"); |