Skip to content

Commit

Permalink
Merge pull request #3111 from torusrxxx/patch000000dd
Browse files Browse the repository at this point in the history
fixed trace browser crash
  • Loading branch information
mrexodia committed Jun 6, 2023
2 parents ed0b5d3 + 3977f96 commit 4e96002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/Src/Tracer/TraceBrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ QString TraceBrowser::paintContent(QPainter* painter, dsint rowBase, int rowOffs
if(index >= mTraceFile->Length())
return "";

const Instruction_t & inst = mTraceFile->Instruction(index);
Instruction_t inst = mTraceFile->Instruction(index);

switch(static_cast<TableColumnIndex>(col))
{
Expand Down

0 comments on commit 4e96002

Please sign in to comment.