Skip to content

Commit

Permalink
Update game_list_frame.cpp (#2835)
Browse files Browse the repository at this point in the history
Fix two typos and make message less vague
  • Loading branch information
Talkashie authored and AniLeo committed Jun 5, 2017
1 parent 1c91dac commit 761b74e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/rpcs3qt/game_list_frame.cpp
Expand Up @@ -570,14 +570,14 @@ void columns_arr::Update(const std::vector<GameInfo>& game_data)
else {
// IIRC a load failure means blank image which is fine to have as a placeholder.
QString abspath = QDir(qstr(path)).absolutePath();
LOG_ERROR(HLE, "Count not load image from path %s", sstr(abspath));
LOG_ERROR(HLE, "Could not load game icon image from path %s", sstr(abspath));
img->fill(QColor(0, 0, 0, 0));
m_img_list->append(img);
}
}
else
{
LOG_ERROR(HLE, "Count not load image from empty path");
LOG_ERROR(HLE, "Could not load game icon image from empty path");
img->fill(QColor(0, 0, 0, 0));
m_img_list->append(img);
}
Expand Down

0 comments on commit 761b74e

Please sign in to comment.