summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-12-31 13:27:44 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-12-31 13:28:25 -0500
commitf6f77bf6398cd6b06ce6778fafc772ed42261a3e (patch)
treec4da0575a94f49f3399d4754cac951d26837f573 /src/frontend/mame/ui
parent54899379258a7266db8d5bc6cda8b48169e67503 (diff)
Move filesystem library into separate namespace and use shorter uX type names there
Diffstat (limited to 'src/frontend/mame/ui')
-rw-r--r--src/frontend/mame/ui/floppycntrl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/floppycntrl.cpp b/src/frontend/mame/ui/floppycntrl.cpp
index ee7740c76d1..d9d6d421b81 100644
--- a/src/frontend/mame/ui/floppycntrl.cpp
+++ b/src/frontend/mame/ui/floppycntrl.cpp
@@ -48,7 +48,7 @@ void menu_control_floppy_image::do_load_create()
// HACK: ensure the floppy_image structure is created since device_image_interface may not otherwise do so during "init phase"
err = fd.finish_load();
if (err == image_init_result::PASS) {
- fs_meta_data meta;
+ fs::meta_data meta;
fd.init_fs(create_fs, meta);
}
}