From bcb5041df2ef1f7ca3ae60c755b42e489bec3433 Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Wed, 9 Apr 2025 23:49:35 +0200 Subject: [PATCH 1/3] use fixed uruntime version --- .ci/deploy-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/deploy-linux.sh b/.ci/deploy-linux.sh index bf35d66583..5f0fe2ef8c 100755 --- a/.ci/deploy-linux.sh +++ b/.ci/deploy-linux.sh @@ -35,7 +35,7 @@ if [ "$DEPLOY_APPIMAGE" = "true" ]; then # Remove git directory containing local commit history file rm -rf ./AppDir/usr/share/rpcs3/git - curl -fsSLo /uruntime "https://github.com/VHSgunzo/uruntime/releases/latest/download/uruntime-appimage-dwarfs-$CPU_ARCH" + curl -fsSLo /uruntime "https://github.com/VHSgunzo/uruntime/releases/download/v0.3.4/uruntime-appimage-dwarfs-$CPU_ARCH" chmod +x /uruntime /uruntime --appimage-mkdwarfs -f --set-owner 0 --set-group 0 --no-history --no-create-timestamp \ --compression zstd:level=22 -S26 -B32 --header /uruntime -i AppDir -o RPCS3.AppImage From 9b7d5cd1a9e56fe7ea9b89be887f4967465ff356 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 10 Apr 2025 00:37:55 +0200 Subject: [PATCH 2/3] Qt: fix visibility check of table widget items --- rpcs3/rpcs3qt/game_list_delegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_delegate.cpp b/rpcs3/rpcs3qt/game_list_delegate.cpp index 78f7316b13..6b91cce707 100644 --- a/rpcs3/rpcs3qt/game_list_delegate.cpp +++ b/rpcs3/rpcs3qt/game_list_delegate.cpp @@ -22,7 +22,7 @@ void game_list_delegate::paint(QPainter* painter, const QStyleOptionViewItem& op visible_region.translate(-table->verticalHeader()->width(), -table->horizontalHeader()->height()); if (const QTableWidgetItem* current_item = table->item(index.row(), index.column()); - current_item && visible_region.intersects(table->visualItemRect(current_item))) + current_item && visible_region.boundingRect().intersects(table->visualItemRect(current_item))) { if (movie_item* item = static_cast(table->item(index.row(), static_cast(gui::game_list_columns::icon)))) { From 2d7ffaf07f45397216e89769415d05e51fb1f86c Mon Sep 17 00:00:00 2001 From: kd-11 Date: Fri, 11 Apr 2025 02:37:25 +0300 Subject: [PATCH 3/3] vk: Fix typo in NVIDIA-specific stencil unresolve path --- rpcs3/Emu/RSX/VK/VKResolveHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKResolveHelper.h b/rpcs3/Emu/RSX/VK/VKResolveHelper.h index 57cee06b86..7cf6631b67 100644 --- a/rpcs3/Emu/RSX/VK/VKResolveHelper.h +++ b/rpcs3/Emu/RSX/VK/VKResolveHelper.h @@ -277,7 +277,7 @@ namespace vk static_parameters_width = 3; - build(false, true, false); + build(false, true, true); } void get_dynamic_state_entries(std::vector& state_descriptors) override