Remove useless cast

This commit is contained in:
Lynix 2020-01-26 17:29:42 +01:00
parent 468b63bef5
commit 63c9cf7b18
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ namespace Nz
corner.y += heightDifference;
}
m_drawPos.y += static_cast<unsigned int>(heightDifference);
m_drawPos.y += heightDifference;
m_lines.back().bounds.height += heightDifference;
}