mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
For the Neko
This commit is contained in:
parent
eb80b7ec34
commit
225af34ce9
@ -565,6 +565,7 @@ void game_list_frame::doubleClickedSlot(const QModelIndex& index)
|
||||
{
|
||||
LOG_SUCCESS(LOADER, "Boot from gamelist per doubleclick: done");
|
||||
RequestAddRecentGame(q_string_pair(qstr(Emu.GetBoot()), qstr("[" + m_game_data[i].info.serial + "] " + m_game_data[i].info.name)));
|
||||
Refresh(true);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -863,7 +864,7 @@ void game_list_frame::PopulateGameGrid(uint maxCols, const QSize& image_size, co
|
||||
|
||||
std::string selected_item = CurrentSelectionIconPath();
|
||||
|
||||
delete m_xgrid;
|
||||
m_xgrid->deleteLater();
|
||||
|
||||
bool showText = m_Icon_Size_Str != GUI::gl_icon_key_small && m_Icon_Size_Str != GUI::gl_icon_key_tiny;
|
||||
|
||||
|
@ -243,6 +243,7 @@ void main_window::BootElf()
|
||||
|
||||
const std::string serial = Emu.GetTitleID().empty() ? "" : "[" + Emu.GetTitleID() + "] ";
|
||||
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), qstr(serial + Emu.GetTitle())));
|
||||
gameListFrame->Refresh(true);
|
||||
}
|
||||
}
|
||||
|
||||
@ -279,6 +280,7 @@ void main_window::BootGame()
|
||||
|
||||
const std::string serial = Emu.GetTitleID().empty() ? "" : "[" + Emu.GetTitleID() + "] ";
|
||||
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), qstr(serial + Emu.GetTitle())));
|
||||
gameListFrame->Refresh(true);
|
||||
}
|
||||
}
|
||||
|
||||
@ -794,6 +796,7 @@ void main_window::BootRecentAction(const QAction* act)
|
||||
{
|
||||
LOG_SUCCESS(LOADER, "Boot from Recent List: done");
|
||||
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), nam));
|
||||
gameListFrame->Refresh(true);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user