early-access version 3885
This commit is contained in:
parent
47da5433a8
commit
6dda154b06
4 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3884.
|
This is the source code for early-access 3885.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -214,7 +214,7 @@ dependencies {
|
||||||
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1")
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1")
|
||||||
implementation("io.coil-kt:coil:2.2.2")
|
implementation("io.coil-kt:coil:2.2.2")
|
||||||
implementation("androidx.core:core-splashscreen:1.0.1")
|
implementation("androidx.core:core-splashscreen:1.0.1")
|
||||||
implementation("androidx.window:window:1.1.0")
|
implementation("androidx.window:window:1.2.0-beta03")
|
||||||
implementation("org.ini4j:ini4j:0.5.4")
|
implementation("org.ini4j:ini4j:0.5.4")
|
||||||
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
||||||
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
||||||
|
|
|
@ -552,7 +552,7 @@ void MiiDBModule::GetDatabaseService(HLERequestContext& ctx) {
|
||||||
rb.Push(ResultSuccess);
|
rb.Push(ResultSuccess);
|
||||||
rb.PushIpcInterface<IDatabaseService>(system, manager, is_system);
|
rb.PushIpcInterface<IDatabaseService>(system, manager, is_system);
|
||||||
|
|
||||||
LOG_CRITICAL(Service_Mii, "called");
|
LOG_DEBUG(Service_Mii, "called");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::shared_ptr<MiiManager> MiiDBModule::GetMiiManager() {
|
std::shared_ptr<MiiManager> MiiDBModule::GetMiiManager() {
|
||||||
|
|
|
@ -131,7 +131,7 @@ Result MiiManager::GetIndex(const DatabaseSessionMetadata& metadata, const CharI
|
||||||
|
|
||||||
s32 index{};
|
s32 index{};
|
||||||
const bool is_special = metadata.magic == MiiMagic;
|
const bool is_special = metadata.magic == MiiMagic;
|
||||||
Result result = database_manager.FindIndex(index, char_info.GetCreateId(), is_special);
|
const auto result = database_manager.FindIndex(index, char_info.GetCreateId(), is_special);
|
||||||
|
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
index = -1;
|
index = -1;
|
||||||
|
|
Loading…
Reference in a new issue