mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-18 17:12:39 +00:00
update Cheat files
This commit is contained in:
parent
9ab8c1e433
commit
cbfd634a4b
217 changed files with 2263 additions and 1880 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue