Skip to content

Commit

Permalink
debugger/debugimgui.cpp: Hacked stuff out until it builds again.
Browse files Browse the repository at this point in the history
  • Loading branch information
cuavas committed Apr 11, 2024
1 parent 8465345 commit 62325d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/osd/modules/debugger/debugimgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,13 @@ bool debug_imgui::get_view_source(void* data, int idx, const char** out_text)

void debug_imgui::handle_mouse()
{
#if 0
m_prev_mouse_button = m_mouse_button;
m_machine->ui_input().find_mouse(&m_mouse_x, &m_mouse_y, &m_mouse_button);
ImGuiIO& io = ImGui::GetIO();
io.MousePos = ImVec2(m_mouse_x,m_mouse_y);
io.MouseDown[0] = m_mouse_button;
#endif
}

void debug_imgui::handle_mouse_views()
Expand Down

0 comments on commit 62325d7

Please sign in to comment.