Format all code with new clang-format

This commit is contained in:
DrChat
2017-12-14 20:35:44 -06:00
parent f7e91ab475
commit aaf281351d
66 changed files with 915 additions and 718 deletions

View File

@@ -395,7 +395,10 @@ void DebugWindow::DrawSourcePane() {
ImGui::SameLine();
if (function->is_guest()) {
const char* kSourceDisplayModes[] = {
"PPC", "PPC+HIR+x64", "PPC+HIR (opt)+x64", "PPC+x64",
"PPC",
"PPC+HIR+x64",
"PPC+HIR (opt)+x64",
"PPC+x64",
};
ImGui::PushItemWidth(90);
ImGui::Combo("##display_mode", &state_.source_display_mode,
@@ -1338,8 +1341,9 @@ void DebugWindow::DrawBreakpointsPane() {
function->MapGuestAddressToMachineCode(
breakpoint->guest_address()));
} else {
NavigateToFunction(function, function->MapMachineCodeToGuestAddress(
breakpoint->host_address()),
NavigateToFunction(function,
function->MapMachineCodeToGuestAddress(
breakpoint->host_address()),
breakpoint->host_address());
}
}