remove timed_scope from mem_edit.DrawContents
This commit is contained in:
parent
4970a30ea9
commit
3d7f61362b
1 changed files with 1 additions and 4 deletions
|
@ -217,10 +217,7 @@ void update_and_render(Arena *arena, App_State &app, f32 delta_time_ms)
|
|||
void *content = app.inspected_file.mem + app.viewer.base_display_addr;
|
||||
u64 content_size = app.inspected_file.size - app.viewer.base_display_addr;
|
||||
app.last_pinfo = &invalid_pinfo;
|
||||
{
|
||||
TIMED_SCOPE();
|
||||
app.viewer.mem_edit.DrawContents(content, content_size, app.viewer.base_display_addr);
|
||||
}
|
||||
app.viewer.mem_edit.DrawContents(content, content_size, app.viewer.base_display_addr);
|
||||
|
||||
ImGui::TableNextColumn();
|
||||
ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoInputs|ImGuiColorEditFlags_NoLabel;
|
||||
|
|
Loading…
Reference in a new issue