| 1082 | } |
| 1083 | |
| 1084 | bool DisassemblyView::FunctionCanRestore(u32 address) |
| 1085 | { |
| 1086 | FunctionInfo function = cpu().GetSymbolGuardian().FunctionOverlappingAddress(address); |
| 1087 | if (function.address.valid()) |
| 1088 | address = function.address.value; |
| 1089 | |
| 1090 | return m_stubbedFunctions.find(address) != m_stubbedFunctions.end(); |
| 1091 | } |
| 1092 | |
| 1093 | #include "moc_DisassemblyView.cpp" |
nothing calls this directly
no test coverage detected