Skip to content
Permalink
Browse files
Merge pull request #6393 from leoetlino/warning-fixes
Qt: Warning fixes
  • Loading branch information
JosJuice committed Feb 22, 2018
2 parents fca9c28 + 1e6dc19 commit c08f6f0
Showing 1 changed file with 5 additions and 5 deletions.
@@ -171,7 +171,7 @@ void MappingIndicator::DrawStick()
// Emulated cursor position
float virt_curx, virt_cury;

if (abs(curx) < deadzone && abs(cury) < deadzone)
if (std::abs(curx) < deadzone && std::abs(cury) < deadzone)
{
virt_curx = virt_cury = 0;
}
@@ -182,7 +182,7 @@ void MappingIndicator::DrawStick()
}

// Coordinates for an octagon
std::array<QPointF, 8> radius_octagon = {
std::array<QPointF, 8> radius_octagon = {{
QPointF(centerx, centery + stick_size), // Bottom
QPointF(centerx + stick_size / sqrt(2), centery + stick_size / sqrt(2)), // Bottom Right
QPointF(centerx + stick_size, centery), // Right
@@ -191,7 +191,7 @@ void MappingIndicator::DrawStick()
QPointF(centerx - stick_size / sqrt(2), centery - stick_size / sqrt(2)), // Top Left
QPointF(centerx - stick_size, centery), // Left
QPointF(centerx - stick_size / sqrt(2), centery + stick_size / sqrt(2)) // Bottom Left
};
}};

QPainter p(this);

@@ -233,12 +233,12 @@ void MappingIndicator::DrawMixedTriggers()
double r_bar_percent = r_analog;
double l_bar_percent = l_analog;

if (r_button && (r_button != r_analog) || (r_button == r_analog) && (r_analog > threshold))
if ((r_button && r_button != r_analog) || (r_button == r_analog && r_analog > threshold))
r_bar_percent = 1;
else
r_bar_percent *= 0.8;

if (l_button && (l_button != l_analog) || (l_button == l_analog) && (l_analog > threshold))
if ((l_button && l_button != l_analog) || (l_button == l_analog && l_analog > threshold))
l_bar_percent = 1;
else
l_bar_percent *= 0.8;

0 comments on commit c08f6f0

Please sign in to comment.