CListBox: remove float type

Is not really required
This commit is contained in:
2013-09-13 20:57:43 +02:00
parent d9ee92f83d
commit 76aa02db42

View File

@@ -73,10 +73,10 @@ void CListBox::paint()
if (sbc < 1) if (sbc < 1)
sbc = 1; sbc = 1;
float sbh= (sb- 4)/ sbc; int sbh= (sb- 4)/ sbc;
int sbs= (selected/listmaxshow); int sbs= (selected/listmaxshow);
frameBuffer->paintBoxRel(x+ width- 13, ypos+ 2+ int(sbs* sbh) , 11, int(sbh), COL_MENUCONTENT_PLUS_3); frameBuffer->paintBoxRel(x+ width- 13, ypos+ 2+ sbs* sbh , 11, sbh, COL_MENUCONTENT_PLUS_3);
} }
void CListBox::paintHead() void CListBox::paintHead()