mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 22:45:45 +00:00
configure_system: Fix compiler warning
This commit is contained in:
parent
e35ba30edc
commit
d0eea8fc3a
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ QPixmap GetIcon(Service::Account::UUID uuid) {
|
||||||
|
|
||||||
if (!icon) {
|
if (!icon) {
|
||||||
icon.fill(Qt::black);
|
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);
|
return icon.scaled(64, 64, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue