mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-02 03:26:40 -04:00
Reduce use of unsigned integers when signed will do fine.
This commit is contained in:
parent
ce481c0b5a
commit
14f18d5cf7
10 changed files with 59 additions and 58 deletions
|
@ -262,7 +262,7 @@ Rect AISRecentEntryDetailView::draw_field(
|
|||
const std::string& label,
|
||||
const std::string& value
|
||||
) {
|
||||
const size_t label_length_max = 4;
|
||||
const int label_length_max = 4;
|
||||
|
||||
painter.draw_string(Point { draw_rect.left(), draw_rect.top() }, style, label);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue