summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar german772021-10-29 00:26:53 -0500
committerGravatar german772021-10-29 17:56:51 -0500
commitf503dbf07193c290bdd814024d58f5c69535d7d0 (patch)
tree07e1c5b1c73ad461c15163ac33a8bc42ff314e88
parentMerge pull request #7218 from bylaws/aswdqdsam (diff)
downloadyuzu-f503dbf07193c290bdd814024d58f5c69535d7d0.tar.gz
yuzu-f503dbf07193c290bdd814024d58f5c69535d7d0.tar.xz
yuzu-f503dbf07193c290bdd814024d58f5c69535d7d0.zip
profile_manager: Resize any image bigger than 256p
Diffstat (limited to '')
-rw-r--r--src/yuzu/configuration/configure_profile_manager.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_profile_manager.cpp b/src/yuzu/configuration/configure_profile_manager.cpp
index 99d5f4686..78b6374c0 100644
--- a/src/yuzu/configuration/configure_profile_manager.cpp
+++ b/src/yuzu/configuration/configure_profile_manager.cpp
@@ -306,6 +306,17 @@ void ConfigureProfileManager::SetUserImage() {
306 return; 306 return;
307 } 307 }
308 308
309 // Some games crash when the profile image is too big. Resize any image bigger than 256x256
310 QImage image(image_path);
311 if (image.width() > 256 || image.height() > 256) {
312 image = image.scaled(256, 256, Qt::KeepAspectRatio);
313 if (!image.save(image_path)) {
314 QMessageBox::warning(this, tr("Error resizing user image"),
315 tr("Unable to resize image"));
316 return;
317 }
318 }
319
309 const auto username = GetAccountUsername(*profile_manager, *uuid); 320 const auto username = GetAccountUsername(*profile_manager, *uuid);
310 item_model->setItem(index, 0, 321 item_model->setItem(index, 0,
311 new QStandardItem{GetIcon(*uuid), FormatUserEntryText(username, *uuid)}); 322 new QStandardItem{GetIcon(*uuid), FormatUserEntryText(username, *uuid)});