DraVee
2 days ago
No known key found for this signature in database
GPG Key ID: CFF07301B9CB28CA
3 changed files with
2 additions and
3 deletions
-
src/android/app/src/main/jni/native.cpp
-
src/core/core.cpp
-
src/core/file_sys/patch_manager.h
|
|
@ -1396,9 +1396,7 @@ jobjectArray Java_org_yuzu_yuzu_1emu_NativeLibrary_getPatchesForFile(JNIEnv* env |
|
|
FileSys::VirtualFile update_raw; |
|
|
FileSys::VirtualFile update_raw; |
|
|
loader->ReadUpdateRaw(update_raw); |
|
|
loader->ReadUpdateRaw(update_raw); |
|
|
|
|
|
|
|
|
// Get build ID for individual cheat enumeration
|
|
|
|
|
|
auto patches = pm.GetPatches(update_raw); |
|
|
auto patches = pm.GetPatches(update_raw); |
|
|
|
|
|
|
|
|
jobjectArray jpatchArray = |
|
|
jobjectArray jpatchArray = |
|
|
env->NewObjectArray(patches.size(), Common::Android::GetPatchClass(), nullptr); |
|
|
env->NewObjectArray(patches.size(), Common::Android::GetPatchClass(), nullptr); |
|
|
int i = 0; |
|
|
int i = 0; |
|
|
|
|
|
@ -470,6 +470,7 @@ struct System::Impl { |
|
|
Core::SpeedLimiter speed_limiter; |
|
|
Core::SpeedLimiter speed_limiter; |
|
|
ExecuteProgramCallback execute_program_callback; |
|
|
ExecuteProgramCallback execute_program_callback; |
|
|
ExitCallback exit_callback; |
|
|
ExitCallback exit_callback; |
|
|
|
|
|
|
|
|
std::optional<Service::Services> services; |
|
|
std::optional<Service::Services> services; |
|
|
std::optional<Core::Debugger> debugger; |
|
|
std::optional<Core::Debugger> debugger; |
|
|
std::optional<Service::KernelHelpers::ServiceContext> general_channel_context; |
|
|
std::optional<Service::KernelHelpers::ServiceContext> general_channel_context; |
|
|
|
|
|
@ -43,7 +43,7 @@ enum class PatchSource { |
|
|
Packed, |
|
|
Packed, |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
enum class CheatCompatibility { |
|
|
|
|
|
|
|
|
enum class CheatCompatibility : u8 { |
|
|
Incompatible, |
|
|
Incompatible, |
|
|
Compatible, |
|
|
Compatible, |
|
|
}; |
|
|
}; |
|
|
|