Fix compilation under VS2015 Update 1

This commit is contained in:
sephiroth99 2015-11-30 22:56:42 -05:00
parent 82fe65475e
commit f367c4ba7b
1 changed files with 5 additions and 5 deletions

View File

@ -1245,13 +1245,13 @@ void DebugWindow::DrawBreakpointsPane() {
if (has_any_call_filter && !call_rankings[i].second) {
continue;
}
auto export = all_exports[call_rankings[i].first];
if (export->type != cpu::Export::Type::kFunction ||
!export->is_implemented()) {
auto export_entry = all_exports[call_rankings[i].first];
if (export_entry->type != cpu::Export::Type::kFunction ||
!export_entry->is_implemented()) {
continue;
}
// TODO(benvanik): skip unused kernel calls.
ImGui::PushID(export);
ImGui::PushID(export_entry);
// TODO(benvanik): selection, hover info (module name, ordinal, etc).
bool is_pre_enabled = false;
bool is_post_enabled = false;
@ -1275,7 +1275,7 @@ void DebugWindow::DrawBreakpointsPane() {
ImGui::SameLine();
ImGui::Dummy(ImVec2(4, 0));
ImGui::SameLine();
ImGui::Text(export->name);
ImGui::Text(export_entry->name);
ImGui::Dummy(ImVec2(0, 1));
ImGui::PopID();
}