summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/fileio.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-03-10 18:21:10 +1100
committer Vas Crabb <vas@vastheman.com>2020-03-10 18:21:10 +1100
commit9c600695f0ed4456270bf5f1676b8fadaed34127 (patch)
tree1e52fb8b786e9bece80b05e2f583bba207f5af7c /src/emu/fileio.h
parentcc70fe02bacdf8dc17fe75065e387276c8056e5e (diff)
(nw) Cleanup on the way:
* Add doxygen comments for bit manipulation functions * Add an overload of BIT that works like the AArch64 UBFX instruction * Kill off some of the silly concatenating overloads for emu_file::open * Make searchpath acually useful for devices This is a checkpoint - I'm planning to improve ROM loading behaviour at least a little.
Diffstat (limited to 'src/emu/fileio.h')
-rw-r--r--src/emu/fileio.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/fileio.h b/src/emu/fileio.h
index 26e9fb4e907..ad7ef5028a6 100644
--- a/src/emu/fileio.h
+++ b/src/emu/fileio.h
@@ -106,9 +106,6 @@ public:
// open/close
osd_file::error open(const std::string &name);
- osd_file::error open(const std::string &name1, const std::string &name2);
- osd_file::error open(const std::string &name1, const std::string &name2, const std::string &name3);
- osd_file::error open(const std::string &name1, const std::string &name2, const std::string &name3, const std::string &name4);
osd_file::error open(const std::string &name, u32 crc);
osd_file::error open(const std::string &name1, const std::string &name2, u32 crc);
osd_file::error open(const std::string &name1, const std::string &name2, const std::string &name3, u32 crc);