mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-15 00:39:23 +01:00
Merge pull request #13014 from LillyJadeKatrin/retroachievements-game-badge-fix
Fixed missing game badge in achievements dialog
This commit is contained in:
commit
e91784e7ec
@ -103,7 +103,7 @@ void AchievementHeaderWidget::UpdateData()
|
|||||||
{
|
{
|
||||||
rc_client_user_game_summary_t game_summary;
|
rc_client_user_game_summary_t game_summary;
|
||||||
rc_client_get_user_game_summary(instance.GetClient(), &game_summary);
|
rc_client_get_user_game_summary(instance.GetClient(), &game_summary);
|
||||||
if (game_badge.data.empty())
|
if (!game_badge.data.empty())
|
||||||
{
|
{
|
||||||
QImage i_game_icon(game_badge.data.data(), game_badge.width, game_badge.height,
|
QImage i_game_icon(game_badge.data.data(), game_badge.width, game_badge.height,
|
||||||
QImage::Format_RGBA8888);
|
QImage::Format_RGBA8888);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user