Fix license and format

This commit is contained in:
PabloMK7
2026-07-08 19:08:39 +02:00
parent 7ba6e5fdba
commit dac8869004
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
#include <QWidget> #include <QWidget>
namespace Ui { namespace Ui {
class ConfigureDebug; class ConfigureDebug;
} }
class ConfigureDebug : public QWidget { class ConfigureDebug : public QWidget {
+3 -3
View File
@@ -1,4 +1,4 @@
// Copyright 2022 Citra Emulator Project // Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version // Licensed under GPLv2 or any later version
// Refer to the license.txt file included. // Refer to the license.txt file included.
@@ -81,8 +81,8 @@ u64 DataProcessing_rsr(auto i) {
// predicted by the return stack // predicted by the return stack
u64 MovReg(auto i) { u64 MovReg(auto i) {
if (i.template Get<"d">() == 15) { if (i.template Get<"d">() == 15) {
const bool is_return = i.template Get<"m">() == 14 && i.template Get<"v">() == 0 && const bool is_return =
i.template Get<"r">() == 0; i.template Get<"m">() == 14 && i.template Get<"v">() == 0 && i.template Get<"r">() == 0;
return is_return ? 1 : pipeline_flush_cycles; return is_return ? 1 : pipeline_flush_cycles;
} }
return 1; return 1;