mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Common: Namespace GekkoDisassembler.cpp/.h
Moves more common code into the Common namespace where it belongs
This commit is contained in:
@ -85,6 +85,6 @@ void AssemblerEntryDialog::OnTextChanged(wxCommandEvent& evt)
|
||||
unsigned long code;
|
||||
std::string result = "Input text is invalid";
|
||||
if (evt.GetString().ToULong(&code, 0) && code <= std::numeric_limits<u32>::max())
|
||||
result = TabsToSpaces(1, GekkoDisassembler::Disassemble(code, m_address));
|
||||
result = TabsToSpaces(1, Common::GekkoDisassembler::Disassemble(code, m_address));
|
||||
m_preview->SetLabel(wxString::Format(_("Preview: %s"), result.c_str()));
|
||||
}
|
||||
|
Reference in New Issue
Block a user