summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-02-11 23:22:46 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-02-11 23:22:46 -0500
commit0cb0cfd4c66915b43929d496fb694445fd7ab6ea (patch)
treebf6b5354e06024451554153eb4d60fbc97b47811 /src/frontend/mame/ui
parenta9440352de702cc42c4ac972aeb1e37fe6bd8b2a (diff)
Remove fileio.h from emu.h
Diffstat (limited to 'src/frontend/mame/ui')
-rw-r--r--src/frontend/mame/ui/auditmenu.cpp1
-rw-r--r--src/frontend/mame/ui/custui.cpp1
-rw-r--r--src/frontend/mame/ui/dirmenu.cpp1
-rw-r--r--src/frontend/mame/ui/inifile.cpp1
-rw-r--r--src/frontend/mame/ui/menu.cpp1
-rw-r--r--src/frontend/mame/ui/miscmenu.cpp1
-rw-r--r--src/frontend/mame/ui/optsmenu.cpp2
-rw-r--r--src/frontend/mame/ui/selgame.cpp1
-rw-r--r--src/frontend/mame/ui/selmenu.cpp1
-rw-r--r--src/frontend/mame/ui/selsoft.cpp1
-rw-r--r--src/frontend/mame/ui/simpleselgame.cpp1
-rw-r--r--src/frontend/mame/ui/systemlist.cpp1
-rw-r--r--src/frontend/mame/ui/ui.cpp1
13 files changed, 14 insertions, 0 deletions
diff --git a/src/frontend/mame/ui/auditmenu.cpp b/src/frontend/mame/ui/auditmenu.cpp
index a5cb46fc4d8..651464cfdab 100644
--- a/src/frontend/mame/ui/auditmenu.cpp
+++ b/src/frontend/mame/ui/auditmenu.cpp
@@ -17,6 +17,7 @@
#include "audit.h"
#include "drivenum.h"
+#include "fileio.h"
#include "uiinput.h"
#include "util/corestr.h"
diff --git a/src/frontend/mame/ui/custui.cpp b/src/frontend/mame/ui/custui.cpp
index 02da9310207..9359bc5d4a8 100644
--- a/src/frontend/mame/ui/custui.cpp
+++ b/src/frontend/mame/ui/custui.cpp
@@ -17,6 +17,7 @@
#include "drivenum.h"
#include "emuopts.h"
+#include "fileio.h"
#include "uiinput.h"
#include "corestr.h"
diff --git a/src/frontend/mame/ui/dirmenu.cpp b/src/frontend/mame/ui/dirmenu.cpp
index d37217afd9d..32916d6e8f0 100644
--- a/src/frontend/mame/ui/dirmenu.cpp
+++ b/src/frontend/mame/ui/dirmenu.cpp
@@ -16,6 +16,7 @@
#include "ui/optsmenu.h"
#include "emuopts.h"
+#include "fileio.h"
#include "mame.h"
#include "util/corestr.h"
diff --git a/src/frontend/mame/ui/inifile.cpp b/src/frontend/mame/ui/inifile.cpp
index 07d9dd85b62..6cf9886324d 100644
--- a/src/frontend/mame/ui/inifile.cpp
+++ b/src/frontend/mame/ui/inifile.cpp
@@ -16,6 +16,7 @@
#include "language.h"
#include "drivenum.h"
+#include "fileio.h"
#include "softlist_dev.h"
#include "corestr.h"
diff --git a/src/frontend/mame/ui/menu.cpp b/src/frontend/mame/ui/menu.cpp
index 1b8290f77f5..c69b792e1c0 100644
--- a/src/frontend/mame/ui/menu.cpp
+++ b/src/frontend/mame/ui/menu.cpp
@@ -21,6 +21,7 @@
#include "corestr.h"
#include "drivenum.h"
+#include "fileio.h"
#include "rendutil.h"
#include "uiinput.h"
diff --git a/src/frontend/mame/ui/miscmenu.cpp b/src/frontend/mame/ui/miscmenu.cpp
index 0d052562fa0..aef5a60a7c3 100644
--- a/src/frontend/mame/ui/miscmenu.cpp
+++ b/src/frontend/mame/ui/miscmenu.cpp
@@ -24,6 +24,7 @@
#include "mameopts.h"
#include "pluginopts.h"
#include "drivenum.h"
+#include "fileio.h"
#include "romload.h"
#include "uiinput.h"
diff --git a/src/frontend/mame/ui/optsmenu.cpp b/src/frontend/mame/ui/optsmenu.cpp
index d21f069f6f7..bafbe9d2af0 100644
--- a/src/frontend/mame/ui/optsmenu.cpp
+++ b/src/frontend/mame/ui/optsmenu.cpp
@@ -22,6 +22,8 @@
#include "mame.h"
#include "mameopts.h"
+
+#include "fileio.h"
#include "rendfont.h"
diff --git a/src/frontend/mame/ui/selgame.cpp b/src/frontend/mame/ui/selgame.cpp
index 77fcefd208e..abda7047971 100644
--- a/src/frontend/mame/ui/selgame.cpp
+++ b/src/frontend/mame/ui/selgame.cpp
@@ -28,6 +28,7 @@
#include "corestr.h"
#include "drivenum.h"
#include "emuopts.h"
+#include "fileio.h"
#include "rendutil.h"
#include "romload.h"
#include "softlist_dev.h"
diff --git a/src/frontend/mame/ui/selmenu.cpp b/src/frontend/mame/ui/selmenu.cpp
index 3c16f83f112..85efff4b8cd 100644
--- a/src/frontend/mame/ui/selmenu.cpp
+++ b/src/frontend/mame/ui/selmenu.cpp
@@ -27,6 +27,7 @@
#include "corestr.h"
#include "drivenum.h"
#include "emuopts.h"
+#include "fileio.h"
#include "rendfont.h"
#include "rendutil.h"
#include "romload.h"
diff --git a/src/frontend/mame/ui/selsoft.cpp b/src/frontend/mame/ui/selsoft.cpp
index c5c32303e93..dc3904f2169 100644
--- a/src/frontend/mame/ui/selsoft.cpp
+++ b/src/frontend/mame/ui/selsoft.cpp
@@ -19,6 +19,7 @@
#include "corestr.h"
#include "drivenum.h"
#include "emuopts.h"
+#include "fileio.h"
#include "mame.h"
#include "rendutil.h"
#include "softlist_dev.h"
diff --git a/src/frontend/mame/ui/simpleselgame.cpp b/src/frontend/mame/ui/simpleselgame.cpp
index 7cb346ee397..3a230e88a89 100644
--- a/src/frontend/mame/ui/simpleselgame.cpp
+++ b/src/frontend/mame/ui/simpleselgame.cpp
@@ -20,6 +20,7 @@
#include "audit.h"
#include "drivenum.h"
#include "emuopts.h"
+#include "fileio.h"
#include "mame.h"
#include "uiinput.h"
diff --git a/src/frontend/mame/ui/systemlist.cpp b/src/frontend/mame/ui/systemlist.cpp
index a05ebeecc12..5038c7e9783 100644
--- a/src/frontend/mame/ui/systemlist.cpp
+++ b/src/frontend/mame/ui/systemlist.cpp
@@ -14,6 +14,7 @@
#include "ui/moptions.h"
#include "drivenum.h"
+#include "fileio.h"
#include "util/corestr.h"
#include "util/unicode.h"
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp
index c9dae332ea6..8813251976c 100644
--- a/src/frontend/mame/ui/ui.cpp
+++ b/src/frontend/mame/ui/ui.cpp
@@ -33,6 +33,7 @@
#include "emuopts.h"
#include "mameopts.h"
#include "drivenum.h"
+#include "fileio.h"
#include "natkeyboard.h"
#include "render.h"
#include "cheat.h"