1
0
Fork 0
forked from eden-emu/eden

Merge pull request #1595 from FreddyFunk/cast

configure_system: Fix compiler warning
This commit is contained in:
bunnei 2018-10-30 00:27:41 -04:00 committed by GitHub
commit c31412c433
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

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