mirror of https://github.com/stella-emu/stella.git
Fix size_t issue.
This commit is contained in:
parent
0c6f8bf381
commit
bc75a2ee83
|
@ -37,7 +37,7 @@ DelayQueueWidget::DelayQueueWidget(
|
|||
_textcolor = kTextColor;
|
||||
|
||||
_w = 20 * font.getMaxCharWidth() + 6;
|
||||
_h = myLines.size() * font.getLineHeight() + 6;
|
||||
_h = static_cast<int>(myLines.size() * font.getLineHeight() + 6);
|
||||
|
||||
for (auto&& line : myLines) line = "";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue