diff options
author | 2020-09-30 20:53:42 +1000 | |
---|---|---|
committer | 2020-09-30 20:53:42 +1000 | |
commit | 5bb5c31345a6dfffd94950a063305094f62302b8 (patch) | |
tree | 92a1277926ba2dc0b3c0a5cea15814e59d17e3cb /src/emu/romload.cpp | |
parent | 3a95d1e4fd4b5d0ccdb48cd6db9f90f2cd65f08d (diff) |
emu/machine.cpp: Get rid of remaining make_unique_clear on 'manager' objects.
Diffstat (limited to 'src/emu/romload.cpp')
-rw-r--r-- | src/emu/romload.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/emu/romload.cpp b/src/emu/romload.cpp index ee8cd2feb2a..ef48d87fab0 100644 --- a/src/emu/romload.cpp +++ b/src/emu/romload.cpp @@ -1418,6 +1418,17 @@ void rom_load_manager::process_region_list() rom_load_manager::rom_load_manager(running_machine &machine) : m_machine(machine) + , m_warnings(0) + , m_knownbad(0) + , m_errors(0) + , m_romsloaded(0) + , m_romstotal(0) + , m_romsloadedsize(0) + , m_romstotalsize(0) + , m_chd_list() + , m_region(nullptr) + , m_errorstring() + , m_softwarningstring() { // figure out which BIOS we are using std::map<std::string, std::string> card_bios; |