Merge branch 'master' into savedataaa

This commit is contained in:
Megamouse 2025-04-11 22:29:18 +02:00 committed by GitHub
commit dde84859b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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<VkDynamicState>& state_descriptors) override

View file

@ -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<movie_item*>(table->item(index.row(), static_cast<int>(gui::game_list_columns::icon))))
{