From 50c53a76148cc570d180ba8ac79e10c57e9ab58d 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 081f0436dd..8416bad4f6 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -1395,9 +1395,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 d408c6f47b..d3fe33aeea 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -469,6 +469,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, };