diff options
author | 2019-12-19 16:08:51 -0500 | |
---|---|---|
committer | 2019-12-19 16:08:51 -0500 | |
commit | e9760c567982971c1c802120b3620030a7a3d252 (patch) | |
tree | 5f5acb9d24e66551cb711ab675e859196bdce261 /src/emu/romload.h | |
parent | 6204b4373be59267482e2173670a0da5a36731f2 (diff) |
romload.cpp: Minor cleanup, getting rid of a few static helpers (nw)
Diffstat (limited to 'src/emu/romload.h')
-rw-r--r-- | src/emu/romload.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/emu/romload.h b/src/emu/romload.h index ae78d409932..f1238f5700b 100644 --- a/src/emu/romload.h +++ b/src/emu/romload.h @@ -429,7 +429,7 @@ private: void verify_length_and_hash(const char *name, u32 explength, const util::hash_collection &hashes); void display_loading_rom_message(const char *name, bool from_list); void display_rom_load_results(bool from_list); - void region_post_process(const char *rgntag, bool invert); + void region_post_process(memory_region *region, bool invert); int open_rom_file(const char *regiontag, const rom_entry *romp, std::string &tried_file_names, bool from_list); int rom_fread(u8 *buffer, int length, const rom_entry *parent_region); int read_rom_data(const rom_entry *parent_region, const rom_entry *romp); @@ -483,21 +483,12 @@ const rom_entry *rom_next_file(const rom_entry *romp); /* return the expected size of a file given the ROM description */ u32 rom_file_size(const rom_entry *romp); -/* return the appropriate name for a rom region */ -std::string rom_region_name(const device_t &device, const rom_entry *romp); - /* return pointer to the first per-game parameter */ const rom_entry *rom_first_parameter(const device_t &device); /* return pointer to the next per-game parameter */ const rom_entry *rom_next_parameter(const rom_entry *romp); -/* return the appropriate name for a per-game parameter */ -std::string rom_parameter_name(const device_t &device, const rom_entry *romp); - -/* return the value for a per-game parameter */ -std::string rom_parameter_value(const rom_entry *romp); - // builds a rom_entry vector from a tiny_rom_entry array std::vector<rom_entry> rom_build_entries(const tiny_rom_entry *tinyentries); |