diff options
author | 2022-09-25 22:08:17 -0400 | |
---|---|---|
committer | 2022-09-25 22:08:17 -0400 | |
commit | 6252b49c4754620e641d18bc4f8e620a570e4e66 (patch) | |
tree | a31a1058965dd3ae132172317fca6b89d57e0b6a /src/frontend | |
parent | 7e61dc3a3dacb645de7554eadf7e43ff62b47914 (diff) |
corefile.h: Move filename utilities to path.h
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/mame/clifront.cpp | 1 | ||||
-rw-r--r-- | src/frontend/mame/mameopts.cpp | 4 | ||||
-rw-r--r-- | src/frontend/mame/media_ident.cpp | 1 | ||||
-rw-r--r-- | src/frontend/mame/ui/custui.cpp | 1 | ||||
-rw-r--r-- | src/frontend/mame/ui/filecreate.cpp | 1 | ||||
-rw-r--r-- | src/frontend/mame/ui/inifile.cpp | 1 | ||||
-rw-r--r-- | src/frontend/mame/ui/miscmenu.cpp | 2 | ||||
-rw-r--r-- | src/frontend/mame/ui/selsoft.cpp | 4 | ||||
-rw-r--r-- | src/frontend/mame/ui/state.cpp | 2 |
9 files changed, 15 insertions, 2 deletions
diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp index 9e04f1ed77b..6faa41dec41 100644 --- a/src/frontend/mame/clifront.cpp +++ b/src/frontend/mame/clifront.cpp @@ -31,6 +31,7 @@ #include "chd.h" #include "corestr.h" +#include "path.h" #include "unzip.h" #include "xmlfile.h" diff --git a/src/frontend/mame/mameopts.cpp b/src/frontend/mame/mameopts.cpp index bbdf8a692b4..c6031308592 100644 --- a/src/frontend/mame/mameopts.cpp +++ b/src/frontend/mame/mameopts.cpp @@ -15,10 +15,12 @@ #include "fileio.h" #include "screen.h" #include "softlist_dev.h" -#include "zippath.h" #include "hashfile.h" #include "clifront.h" +#include "path.h" +#include "zippath.h" + #include <cctype> #include <stack> diff --git a/src/frontend/mame/media_ident.cpp b/src/frontend/mame/media_ident.cpp index 7e6665bc765..d09858198ea 100644 --- a/src/frontend/mame/media_ident.cpp +++ b/src/frontend/mame/media_ident.cpp @@ -14,6 +14,7 @@ #include "softlist_dev.h" #include "jedparse.h" +#include "path.h" #include "unzip.h" diff --git a/src/frontend/mame/ui/custui.cpp b/src/frontend/mame/ui/custui.cpp index 090f657169a..febb6a89472 100644 --- a/src/frontend/mame/ui/custui.cpp +++ b/src/frontend/mame/ui/custui.cpp @@ -22,6 +22,7 @@ #include "corestr.h" #include "osdepend.h" +#include "path.h" #include <algorithm> #include <iterator> diff --git a/src/frontend/mame/ui/filecreate.cpp b/src/frontend/mame/ui/filecreate.cpp index 44d50108b8c..675ddc93ea6 100644 --- a/src/frontend/mame/ui/filecreate.cpp +++ b/src/frontend/mame/ui/filecreate.cpp @@ -17,6 +17,7 @@ #include "ui/ui.h" #include "ui/utils.h" +#include "path.h" #include "zippath.h" #include <cstring> diff --git a/src/frontend/mame/ui/inifile.cpp b/src/frontend/mame/ui/inifile.cpp index 55c7da2d919..c4217f93fa3 100644 --- a/src/frontend/mame/ui/inifile.cpp +++ b/src/frontend/mame/ui/inifile.cpp @@ -20,6 +20,7 @@ #include "softlist_dev.h" #include "corestr.h" +#include "path.h" #include <algorithm> #include <cstring> diff --git a/src/frontend/mame/ui/miscmenu.cpp b/src/frontend/mame/ui/miscmenu.cpp index 0733f554506..d043157dbea 100644 --- a/src/frontend/mame/ui/miscmenu.cpp +++ b/src/frontend/mame/ui/miscmenu.cpp @@ -29,6 +29,8 @@ #include "romload.h" #include "uiinput.h" +#include "path.h" + #include <algorithm> #include <cstring> #include <fstream> diff --git a/src/frontend/mame/ui/selsoft.cpp b/src/frontend/mame/ui/selsoft.cpp index c15fcff7a26..7255db8427f 100644 --- a/src/frontend/mame/ui/selsoft.cpp +++ b/src/frontend/mame/ui/selsoft.cpp @@ -16,7 +16,6 @@ #include "ui/inifile.h" #include "ui/selector.h" -#include "corestr.h" #include "drivenum.h" #include "emuopts.h" #include "fileio.h" @@ -25,6 +24,9 @@ #include "softlist_dev.h" #include "uiinput.h" #include "luaengine.h" + +#include "corestr.h" +#include "path.h" #include "unicode.h" #include <algorithm> diff --git a/src/frontend/mame/ui/state.cpp b/src/frontend/mame/ui/state.cpp index 6aa5d3c6fa4..635b980c6ba 100644 --- a/src/frontend/mame/ui/state.cpp +++ b/src/frontend/mame/ui/state.cpp @@ -14,6 +14,8 @@ #include "emuopts.h" #include "inputdev.h" +#include "path.h" + namespace ui { |