diff --git a/src/eepp/ui/uitableview.cpp b/src/eepp/ui/uitableview.cpp index f0d4732b9..257a0583a 100644 --- a/src/eepp/ui/uitableview.cpp +++ b/src/eepp/ui/uitableview.cpp @@ -1,10 +1,11 @@ +#include #include #include #include #include #include -#include +#include namespace EE { namespace UI { @@ -69,8 +70,7 @@ void UITableView::drawChilds() { rowNode->nodeDraw(); if ( mRowHeaderWidth ) { updateRowHeader( realRowIndex, rowIndex, - realRowIndex == 0 ? std::fmodf( -mScrollOffset.y, rowHeight ) - : 0.f ); + realRowIndex == 0 ? fmodf( -mScrollOffset.y, rowHeight ) : 0.f ); } realRowIndex++; }