BlockAnalyzer: Remove useless continue

This commit is contained in:
Jonas Kvinge 2023-07-21 07:10:17 +02:00
parent 7db36c83c1
commit e6198500f7
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ void BlockAnalyzer::analyze(QPainter &p, const Scope &s, bool new_frame) {
for (int x = 0, y = 0; x < static_cast<int>(scope_.size()); ++x) {
// determine y
for (y = 0; scope_[x] < yscale_[y]; ++y) continue;
for (y = 0; scope_[x] < yscale_[y]; ++y);
// This is opposite to what you'd think, higher than y means the bar is lower than y (physically)
if (static_cast<double>(y) > store_[x]) {