mirror of
https://github.com/holub/mame
synced 2025-05-28 16:43:04 +03:00
missed one Windows debugger thing (nw)
This commit is contained in:
parent
88ce545cdd
commit
8332b437a7
@ -264,7 +264,7 @@ HWND debugview_info::create_source_combobox(HWND parent, LONG_PTR userdata)
|
||||
// populate the combobox
|
||||
debug_view_source const *const cursource = m_view->source();
|
||||
int maxlength = 0;
|
||||
for (debug_view_source const *source = m_view->first_source(); source != nullptr; source = source->next())
|
||||
for (auto &source : m_view->source_list())
|
||||
{
|
||||
int const length = strlen(source->name());
|
||||
if (length > maxlength)
|
||||
|
Loading…
Reference in New Issue
Block a user