From 038e276508140d29af13ce2e73acb0fec64f1d53 Mon Sep 17 00:00:00 2001 From: DraVee Date: Wed, 11 Mar 2026 19:03:22 -0300 Subject: [PATCH] chore: minor changes --- src/android/app/src/main/jni/native.cpp | 2 -- src/core/core.cpp | 1 + src/core/file_sys/patch_manager.h | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp index f6d5a7c1de..7bc8a7a388 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -1396,9 +1396,7 @@ jobjectArray Java_org_yuzu_yuzu_1emu_NativeLibrary_getPatchesForFile(JNIEnv* env FileSys::VirtualFile update_raw; loader->ReadUpdateRaw(update_raw); - // Get build ID for individual cheat enumeration auto patches = pm.GetPatches(update_raw); - jobjectArray jpatchArray = env->NewObjectArray(patches.size(), Common::Android::GetPatchClass(), nullptr); int i = 0; diff --git a/src/core/core.cpp b/src/core/core.cpp index c1219c87f3..94b420f73e 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -470,6 +470,7 @@ struct System::Impl { Core::SpeedLimiter speed_limiter; ExecuteProgramCallback execute_program_callback; ExitCallback exit_callback; + std::optional services; std::optional debugger; std::optional general_channel_context; diff --git a/src/core/file_sys/patch_manager.h b/src/core/file_sys/patch_manager.h index 7904797862..c681b22970 100644 --- a/src/core/file_sys/patch_manager.h +++ b/src/core/file_sys/patch_manager.h @@ -43,7 +43,7 @@ enum class PatchSource { Packed, }; -enum class CheatCompatibility { +enum class CheatCompatibility : u8 { Incompatible, Compatible, };