mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Fixed benign but incorrect usage of instance variable
This commit is contained in:
parent
b3e8407d7c
commit
b58021499c
@ -1012,9 +1012,9 @@ void ui_menubar::menu_item::sensible_seq_name(astring &text, const input_seq &se
|
||||
{
|
||||
// special case; we don't want 'None'
|
||||
if (seq[0] == input_seq::end_code)
|
||||
m_shortcut_text.cpy("");
|
||||
text.cpy("");
|
||||
else
|
||||
m_menubar.machine().input().seq_name(m_shortcut_text, seq);
|
||||
m_menubar.machine().input().seq_name(text, seq);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user