update Cheat files

This commit is contained in:
Nayla Hanegan 2023-04-20 20:32:13 -04:00
parent 9ab8c1e433
commit cbfd634a4b
No known key found for this signature in database
GPG key ID: BAFE9001DA16CFA2
217 changed files with 2263 additions and 1880 deletions

View file

@ -79,6 +79,9 @@ void IRWidget::mouseMoveEvent(QMouseEvent* event)
void IRWidget::handleMouseEvent(QMouseEvent* event)
{
u16 prev_x = m_x;
u16 prev_y = m_y;
if (event->button() == Qt::RightButton)
{
m_x = std::round(ir_max_x / 2.);
@ -94,7 +97,18 @@ void IRWidget::handleMouseEvent(QMouseEvent* event)
m_y = std::max(0, std::min(static_cast<int>(ir_max_y), new_y));
}
emit ChangedX(m_x);
emit ChangedY(m_y);
update();
bool changed = false;
if (prev_x != m_x)
{
emit ChangedX(m_x);
changed = true;
}
if (prev_y != m_y)
{
emit ChangedY(m_y);
changed = true;
}
if (changed)
update();
}