summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/fileio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/fileio.cpp')
-rw-r--r--src/emu/fileio.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/emu/fileio.cpp b/src/emu/fileio.cpp
index bbd1d931f30..53eac8d55cf 100644
--- a/src/emu/fileio.cpp
+++ b/src/emu/fileio.cpp
@@ -283,24 +283,6 @@ osd_file::error emu_file::open(const std::string &name)
return open_next();
}
-osd_file::error emu_file::open(const std::string &name1, const std::string &name2)
-{
- // concatenate the strings and do a standard open
- return open(name1 + name2);
-}
-
-osd_file::error emu_file::open(const std::string &name1, const std::string &name2, const std::string &name3)
-{
- // concatenate the strings and do a standard open
- return open(name1 + name2 + name3);
-}
-
-osd_file::error emu_file::open(const std::string &name1, const std::string &name2, const std::string &name3, const std::string &name4)
-{
- // concatenate the strings and do a standard open
- return open(name1 + name2 + name3 + name4);
-}
-
osd_file::error emu_file::open(const std::string &name, u32 crc)
{
// remember the filename and CRC info