mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
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
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:
parent
950c7768bc
commit
9e49b9100f
|
|
@ -136,6 +136,7 @@ bool config_checker::check_config(QString content, QString& result, bool is_log)
|
||||||
case cfg::type::_enum:
|
case cfg::type::_enum:
|
||||||
case cfg::type::_int:
|
case cfg::type::_int:
|
||||||
case cfg::type::uint:
|
case cfg::type::uint:
|
||||||
|
case cfg::type::uint128:
|
||||||
case cfg::type::string:
|
case cfg::type::string:
|
||||||
{
|
{
|
||||||
const std::string val = base->to_string();
|
const std::string val = base->to_string();
|
||||||
|
|
|
||||||
|
|
@ -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_2: index = 2; break;
|
||||||
case gui::shortcuts::shortcut::gw_savestate_3: index = 3; break;
|
case gui::shortcuts::shortcut::gw_savestate_3: index = 3; break;
|
||||||
case gui::shortcuts::shortcut::gw_savestate_4: index = 4; break;
|
case gui::shortcuts::shortcut::gw_savestate_4: index = 4; break;
|
||||||
|
default: break; // unreachable
|
||||||
}
|
}
|
||||||
|
|
||||||
boot_current_game_savestate(false, index);
|
boot_current_game_savestate(false, index);
|
||||||
|
|
|
||||||
|
|
@ -439,7 +439,7 @@ figure_creator_dialog::figure_creator_dialog(QWidget* parent, u8 slot)
|
||||||
QComboBox* combo_figlist = new QComboBox();
|
QComboBox* combo_figlist = new QComboBox();
|
||||||
|
|
||||||
// Lambda to populate the combo box based on series filter
|
// 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();
|
combo_figlist->clear();
|
||||||
QStringList filterlist;
|
QStringList filterlist;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue