diff options
author | 2016-01-12 09:50:59 +0100 | |
---|---|---|
committer | 2016-01-12 09:50:59 +0100 | |
commit | f9a9eafba08d2caf032f8a0e1c318dd46b8448a8 (patch) | |
tree | c86fb6df06fa19342bf7e9dc6afb6dbd41d6cc8b /src/osd/modules/debugger/debugint.cpp | |
parent | 7dec0b41432f05b1687b0e08df626b19bef6e3c6 (diff) |
created debugger_manager, now this one owns debug_view_manager (nw)
Diffstat (limited to 'src/osd/modules/debugger/debugint.cpp')
-rw-r--r-- | src/osd/modules/debugger/debugint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/debugint.cpp b/src/osd/modules/debugger/debugint.cpp index 0f77f08f802..a43f3a7ede7 100644 --- a/src/osd/modules/debugger/debugint.cpp +++ b/src/osd/modules/debugger/debugint.cpp @@ -189,7 +189,7 @@ public: this->target = target; //dv->container = render_target_get_component_container(target, name, &pos); this->container = target->debug_alloc(); - this->view = machine.debug_view().alloc_view(type, dview_update, this); + this->view = machine.debugger().view().alloc_view(type, dview_update, this); this->type = type; this->m_machine = &machine; this->state = flags | VIEW_STATE_NEEDS_UPDATE | VIEW_STATE_VISIBLE; @@ -211,7 +211,7 @@ public: ~DView() { //this->target->debug_free(*this->container); - machine().debug_view().free_view(*this->view); + machine().debugger().view().free_view(*this->view); } running_machine &machine() const { assert(m_machine != nullptr); return *m_machine; } |