mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 08:50:01 +00:00
Merge pull request #1595 from FreddyFunk/cast
configure_system: Fix compiler warning
This commit is contained in:
commit
c31412c433
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ QPixmap GetIcon(Service::Account::UUID uuid) {
|
|||
|
||||
if (!icon) {
|
||||
icon.fill(Qt::black);
|
||||
icon.loadFromData(backup_jpeg.data(), backup_jpeg.size());
|
||||
icon.loadFromData(backup_jpeg.data(), static_cast<u32>(backup_jpeg.size()));
|
||||
}
|
||||
|
||||
return icon.scaled(64, 64, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
||||
|
|
Loading…
Reference in a new issue