Fix build

This commit is contained in:
SSimco
2023-10-23 01:10:11 +03:00
parent e3aaa58cc8
commit 80543ba2c6
3 changed files with 5 additions and 4 deletions
+4 -2
View File
@@ -13,7 +13,8 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters("x86_64", "arm64-v8a")
// abiFilters("x86_64", "arm64-v8a")
abiFilters("arm64-v8a")
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
@@ -47,7 +48,8 @@ android {
'-DENABLE_DISCORD_RPC=OFF',
'-DENABLE_WAYLAND=OFF'
)
abiFilters("x86_64", "arm64-v8a")
// abiFilters("x86_64", "arm64-v8a")
abiFilters("arm64-v8a")
}
}
}
@@ -109,7 +109,7 @@ std::string GameTitleLoader::GetNameByTitleId(uint64 titleId)
return "Unknown title";
std::string name;
if (!GetConfig().GetGameListCustomName(titleId, name))
name = titleInfo.GetTitleName();
name = titleInfo.GetMetaTitleName();
m_name_cache.emplace(titleId, name);
return name;
}
-1
View File
@@ -10,7 +10,6 @@
#include "config/NetworkSettings.h"
#include "config/LaunchSettings.h"
#include "input/InputManager.h"
#include "gui/CemuApp.h"
#include "Cafe/CafeSystem.h"
#include "Cafe/TitleList/TitleList.h"