diff options
Diffstat (limited to 'src/yuzu')
| -rw-r--r-- | src/yuzu/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | src/yuzu/bootmanager.cpp | 7 | ||||
| -rw-r--r-- | src/yuzu/bootmanager.h | 1 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_dialog.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_hotkeys.cpp | 19 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_hotkeys.h | 3 | ||||
| -rw-r--r-- | src/yuzu/game_list_p.h | 2 | 
7 files changed, 22 insertions, 18 deletions
| diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 2eb86d6e5..31b65c04c 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -151,6 +151,12 @@ target_link_libraries(yuzu PRIVATE common core input_common video_core)  target_link_libraries(yuzu PRIVATE Boost::boost glad Qt5::OpenGL Qt5::Widgets)  target_link_libraries(yuzu PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) +target_compile_definitions(yuzu PRIVATE +    # Use QStringBuilder for string concatenation to reduce +    # the overall number of temporary strings created. +    -DQT_USE_QSTRINGBUILDER +) +  if (YUZU_ENABLE_COMPATIBILITY_REPORTING)      target_compile_definitions(yuzu PRIVATE -DYUZU_ENABLE_COMPATIBILITY_REPORTING)  endif() diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index c29f2d2dc..7eed9fcf3 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -91,8 +91,8 @@ void EmuThread::run() {  class GGLContext : public Core::Frontend::GraphicsContext {  public: -    explicit GGLContext(QOpenGLContext* shared_context) : surface() { -        context = std::make_unique<QOpenGLContext>(shared_context); +    explicit GGLContext(QOpenGLContext* shared_context) +        : context{std::make_unique<QOpenGLContext>(shared_context)} {          surface.setFormat(shared_context->format());          surface.create();      } @@ -186,8 +186,7 @@ private:  };  GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) -    : QWidget(parent), child(nullptr), context(nullptr), emu_thread(emu_thread) { - +    : QWidget(parent), emu_thread(emu_thread) {      setWindowTitle(QStringLiteral("yuzu %1 | %2-%3")                         .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));      setAttribute(Qt::WA_AcceptTouchEvents); diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 9608b959f..3df33aca1 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -10,7 +10,6 @@  #include <QImage>  #include <QThread>  #include <QWidget> -#include "common/thread.h"  #include "core/core.h"  #include "core/frontend/emu_window.h" diff --git a/src/yuzu/configuration/configure_dialog.cpp b/src/yuzu/configuration/configure_dialog.cpp index 51bd1f121..a5218b051 100644 --- a/src/yuzu/configuration/configure_dialog.cpp +++ b/src/yuzu/configuration/configure_dialog.cpp @@ -12,7 +12,7 @@  #include "yuzu/hotkeys.h"  ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry) -    : QDialog(parent), registry(registry), ui(new Ui::ConfigureDialog) { +    : QDialog(parent), ui(new Ui::ConfigureDialog), registry(registry) {      ui->setupUi(this);      ui->hotkeysTab->Populate(registry);      this->setConfiguration(); diff --git a/src/yuzu/configuration/configure_hotkeys.cpp b/src/yuzu/configuration/configure_hotkeys.cpp index bfb562535..a7a8752e5 100644 --- a/src/yuzu/configuration/configure_hotkeys.cpp +++ b/src/yuzu/configuration/configure_hotkeys.cpp @@ -66,20 +66,21 @@ void ConfigureHotkeys::Populate(const HotkeyRegistry& registry) {  }  void ConfigureHotkeys::Configure(QModelIndex index) { -    if (index.parent() == QModelIndex()) +    if (!index.parent().isValid()) {          return; +    }      index = index.sibling(index.row(), 1); -    auto* model = ui->hotkey_list->model(); -    auto previous_key = model->data(index); - -    auto* hotkey_dialog = new SequenceDialog; -    int return_code = hotkey_dialog->exec(); +    auto* const model = ui->hotkey_list->model(); +    const auto previous_key = model->data(index); -    auto key_sequence = hotkey_dialog->GetSequence(); +    SequenceDialog hotkey_dialog{this}; -    if (return_code == QDialog::Rejected || key_sequence.isEmpty()) +    const int return_code = hotkey_dialog.exec(); +    const auto key_sequence = hotkey_dialog.GetSequence(); +    if (return_code == QDialog::Rejected || key_sequence.isEmpty()) {          return; +    }      if (IsUsedKey(key_sequence) && key_sequence != QKeySequence(previous_key.toString())) {          QMessageBox::critical(this, tr("Error in inputted key"), @@ -90,7 +91,7 @@ void ConfigureHotkeys::Configure(QModelIndex index) {      }  } -bool ConfigureHotkeys::IsUsedKey(QKeySequence key_sequence) { +bool ConfigureHotkeys::IsUsedKey(QKeySequence key_sequence) const {      return GetUsedKeyList().contains(key_sequence);  } diff --git a/src/yuzu/configuration/configure_hotkeys.h b/src/yuzu/configuration/configure_hotkeys.h index cd203aad6..73fb8a175 100644 --- a/src/yuzu/configuration/configure_hotkeys.h +++ b/src/yuzu/configuration/configure_hotkeys.h @@ -6,7 +6,6 @@  #include <memory>  #include <QWidget> -#include "core/settings.h"  namespace Ui {  class ConfigureHotkeys; @@ -39,7 +38,7 @@ signals:  private:      void Configure(QModelIndex index); -    bool IsUsedKey(QKeySequence key_sequence); +    bool IsUsedKey(QKeySequence key_sequence) const;      QList<QKeySequence> GetUsedKeyList() const;      std::unique_ptr<Ui::ConfigureHotkeys> ui; diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index 3db0e90da..2cf5c58a0 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h @@ -95,7 +95,7 @@ public:              if (row2.isEmpty())                  return row1; -            return row1 + "\n    " + row2; +            return QString(row1 + "\n    " + row2);          }          return GameListItem::data(role); | 
