mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 03:39:59 +00:00
game_list: Accept *.kip as a file extension of executables
This commit is contained in:
parent
ce9f7ac4f2
commit
c417b4fe28
2 changed files with 2 additions and 3 deletions
|
@ -144,7 +144,7 @@ bool KIP::IsService() const {
|
|||
}
|
||||
|
||||
std::vector<u32> KIP::GetKernelCapabilities() const {
|
||||
return std::vector(header.capabilities.begin(), header.capabilities.end());
|
||||
return std::vector<u32>(header.capabilities.begin(), header.capabilities.end());
|
||||
}
|
||||
|
||||
s32 KIP::GetMainThreadPriority() const {
|
||||
|
|
|
@ -468,8 +468,7 @@ void GameList::LoadInterfaceLayout() {
|
|||
|
||||
const QStringList GameList::supported_file_extensions = {
|
||||
QStringLiteral("nso"), QStringLiteral("nro"), QStringLiteral("nca"),
|
||||
QStringLiteral("xci"), QStringLiteral("nsp"),
|
||||
};
|
||||
QStringLiteral("xci"), QStringLiteral("nsp"), QStringLiteral("kip")};
|
||||
|
||||
void GameList::RefreshGameDirectory() {
|
||||
if (!UISettings::values.game_directory_path.isEmpty() && current_worker != nullptr) {
|
||||
|
|
Loading…
Reference in a new issue