Skip to content

Commit

Permalink
Dont shift left in VT[
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Dec 10, 2023
1 parent 9bd4c54 commit 890665d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libr/core/visual.c
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,9 @@ static void visual_textlogs(RCore *core) {
index += 10;
break;
case '[':
shift --;
if (shift > 0) {
shift --;
}
break;
case ']':
shift ++;
Expand Down

0 comments on commit 890665d

Please sign in to comment.