mirror of
https://github.com/izzy2lost/WeeU.git
synced 2026-07-06 00:19:59 -07:00
Fix build
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user