diff options
| author | 2016-04-23 14:22:46 +0200 | |
|---|---|---|
| committer | 2016-04-23 14:22:46 +0200 | |
| commit | ff2c95e3bfcc6d249cecba358eb7b416564bae89 (patch) | |
| tree | df69ed515d63c4b0d14e338be874c4898bb9dba2 /src/osd/modules/debugger/debugint.cpp | |
| parent | 64eeebb967e74507b8edb2270b73b1a57295f2f3 (diff) | |
enabled internal debugger, but this would need to go in time, it is too coupled with UI (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 03f7998e460..6ac60b81b41 100644 --- a/src/osd/modules/debugger/debugint.cpp +++ b/src/osd/modules/debugger/debugint.cpp @@ -9,7 +9,7 @@ *********************************************************************/ #include "emu.h" -#include "ui/uimain.h" +#include "ui/ui.h" #include "ui/menu.h" #include "rendfont.h" #include "uiinput.h" @@ -370,7 +370,7 @@ static void dview_draw_outlined_box(DView *dv, int rtype, int x, int y, int w, i rectangle r; dview_get_rect(dv, rtype, r); - dv->container->manager().machine().ui().draw_outlined_box(dv->container, NX(dv, x + r.min_x), NY(dv, y + r.min_y), + mame_machine_manager::instance()->ui().draw_outlined_box(dv->container, NX(dv, x + r.min_x), NY(dv, y + r.min_y), NX(dv, x + r.min_x + w), NY(dv, y + r.min_y + h), bg); } |
