mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Update game_list_frame.cpp (#2835)
Fix two typos and make message less vague
This commit is contained in:
parent
1c91dac211
commit
761b74ec59
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue