mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Common: Namespace GekkoDisassembler.cpp/.h
Moves more common code into the Common namespace where it belongs
This commit is contained in:
parent
3d44dc3981
commit
b60ad2425d
10 changed files with 20 additions and 12 deletions
|
@ -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()));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue