Qt: fix some warnings
Some checks failed
Generate Translation Template / Generate Translation Template (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux-aarch64.sh, gcc, rpcs3/rpcs3-ci-jammy-aarch64:1.6, ubuntu-24.04-arm) (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux.sh, gcc, rpcs3/rpcs3-ci-jammy:1.6, ubuntu-24.04) (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (a1d35836e8d45bfc6f63c26f0a3e5d46ef622fe1, rpcs3/rpcs3-binaries-linux-arm64, /rpcs3/.ci/build-linux-aarch64.sh, clang, rpcs3/rpcs3-ci-jammy-aarch64:1.6, ubuntu-24.04-arm) (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (d812f1254a1157c80fd402f94446310560f54e5f, rpcs3/rpcs3-binaries-linux, /rpcs3/.ci/build-linux.sh, clang, rpcs3/rpcs3-ci-jammy:1.6, ubuntu-24.04) (push) Has been cancelled
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (51ae32f468089a8169aaf1567de355ff4a3e0842, rpcs3/rpcs3-binaries-mac, .ci/build-mac.sh, Intel) (push) Has been cancelled
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (8e21bdbc40711a3fccd18fbf17b742348b0f4281, rpcs3/rpcs3-binaries-mac-arm64, .ci/build-mac-arm64.sh, Apple Silicon) (push) Has been cancelled
Build RPCS3 / RPCS3 Windows (push) Has been cancelled
Build RPCS3 / RPCS3 Windows Clang (win64, clang, clang64) (push) Has been cancelled
Build RPCS3 / RPCS3 FreeBSD (push) Has been cancelled

This commit is contained in:
Megamouse 2025-10-10 10:39:24 +02:00
parent 950c7768bc
commit 9e49b9100f
3 changed files with 3 additions and 1 deletions

View file

@ -136,6 +136,7 @@ bool config_checker::check_config(QString content, QString& result, bool is_log)
case cfg::type::_enum:
case cfg::type::_int:
case cfg::type::uint:
case cfg::type::uint128:
case cfg::type::string:
{
const std::string val = base->to_string();

View file

@ -336,6 +336,7 @@ void gs_frame::handle_shortcut(gui::shortcuts::shortcut shortcut_key, const QKey
case gui::shortcuts::shortcut::gw_savestate_2: index = 2; break;
case gui::shortcuts::shortcut::gw_savestate_3: index = 3; break;
case gui::shortcuts::shortcut::gw_savestate_4: index = 4; break;
default: break; // unreachable
}
boot_current_game_savestate(false, index);

View file

@ -439,7 +439,7 @@ figure_creator_dialog::figure_creator_dialog(QWidget* parent, u8 slot)
QComboBox* combo_figlist = new QComboBox();
// Lambda to populate the combo box based on series filter
auto populate_combo = [=](int series_filter) -> u32
auto populate_combo = [=, this](int series_filter) -> u32
{
combo_figlist->clear();
QStringList filterlist;