Don't compare against the wrong type

Technically this is still wrong because of doubles..
This commit is contained in:
Marek Roszko 2024-04-12 19:53:26 -04:00
parent 5087c076c1
commit 24a790a7dc
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ bool HPGL_PLOTTER::EndPlot()
}
}
VECTOR2I loc = m_items.begin()->loc_start;
VECTOR2D loc = m_items.begin()->loc_start;
bool pen_up = true;
LINE_STYLE current_dash = LINE_STYLE::SOLID;
int current_pen = m_penNumber;