early-access version 2122
This commit is contained in:
parent
2c54215c89
commit
1638b63a4c
4 changed files with 12 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 2121.
|
||||
This is the source code for early-access 2122.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -1837,7 +1837,7 @@ void PlayerControlPreview::DrawLeftBody(QPainter& p, const QPointF center) {
|
|||
const float led_size = 5.0f;
|
||||
const QPointF led_position = sideview_center + QPointF(0, -36);
|
||||
int led_count = 0;
|
||||
for (const auto color : led_color) {
|
||||
for (const auto& color : led_color) {
|
||||
p.setBrush(color);
|
||||
DrawRectangle(p, led_position + QPointF(0, 12 * led_count++), led_size, led_size);
|
||||
}
|
||||
|
@ -1933,7 +1933,7 @@ void PlayerControlPreview::DrawRightBody(QPainter& p, const QPointF center) {
|
|||
const float led_size = 5.0f;
|
||||
const QPointF led_position = sideview_center + QPointF(0, -36);
|
||||
int led_count = 0;
|
||||
for (const auto color : led_color) {
|
||||
for (const auto& color : led_color) {
|
||||
p.setBrush(color);
|
||||
DrawRectangle(p, led_position + QPointF(0, 12 * led_count++), led_size, led_size);
|
||||
}
|
||||
|
|
|
@ -143,24 +143,28 @@ void MicroProfileWidget::hideEvent(QHideEvent* ev) {
|
|||
}
|
||||
|
||||
void MicroProfileWidget::mouseMoveEvent(QMouseEvent* ev) {
|
||||
MicroProfileMousePosition(ev->pos().x() / x_scale, ev->pos().y() / y_scale, 0);
|
||||
const auto mouse_position = ev->pos();
|
||||
MicroProfileMousePosition(mouse_position.x() / x_scale, mouse_position.y() / y_scale, 0);
|
||||
ev->accept();
|
||||
}
|
||||
|
||||
void MicroProfileWidget::mousePressEvent(QMouseEvent* ev) {
|
||||
MicroProfileMousePosition(ev->pos().x() / x_scale, ev->pos().y() / y_scale, 0);
|
||||
const auto mouse_position = ev->pos();
|
||||
MicroProfileMousePosition(mouse_position.x() / x_scale, mouse_position.y() / y_scale, 0);
|
||||
MicroProfileMouseButton(ev->buttons() & Qt::LeftButton, ev->buttons() & Qt::RightButton);
|
||||
ev->accept();
|
||||
}
|
||||
|
||||
void MicroProfileWidget::mouseReleaseEvent(QMouseEvent* ev) {
|
||||
MicroProfileMousePosition(ev->pos().x() / x_scale, ev->pos().y() / y_scale, 0);
|
||||
const auto mouse_position = ev->pos();
|
||||
MicroProfileMousePosition(mouse_position.x() / x_scale, mouse_position.y() / y_scale, 0);
|
||||
MicroProfileMouseButton(ev->buttons() & Qt::LeftButton, ev->buttons() & Qt::RightButton);
|
||||
ev->accept();
|
||||
}
|
||||
|
||||
void MicroProfileWidget::wheelEvent(QWheelEvent* ev) {
|
||||
MicroProfileMousePosition(ev->pos().x() / x_scale, ev->pos().y() / y_scale,
|
||||
const auto wheel_position = ev->position().toPoint();
|
||||
MicroProfileMousePosition(wheel_position.x() / x_scale, wheel_position.y() / y_scale,
|
||||
ev->angleDelta().y() / 120);
|
||||
ev->accept();
|
||||
}
|
||||
|
|
|
@ -159,8 +159,7 @@ GameListSearchField::GameListSearchField(GameList* parent) : QWidget{parent} {
|
|||
* @return true if the haystack contains all words of userinput
|
||||
*/
|
||||
static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
|
||||
const QStringList userinput_split =
|
||||
userinput.split(QLatin1Char{' '}, QString::SplitBehavior::SkipEmptyParts);
|
||||
const QStringList userinput_split = userinput.split(QLatin1Char{' '}, Qt::SkipEmptyParts);
|
||||
|
||||
return std::all_of(userinput_split.begin(), userinput_split.end(),
|
||||
[&haystack](const QString& s) { return haystack.contains(s); });
|
||||
|
|
Loading…
Reference in a new issue