mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-13 09:39:21 +00:00
chore: minor changes
This commit is contained in:
parent
38bc172acf
commit
50c53a7614
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -469,6 +469,7 @@ struct System::Impl {
|
|||
Core::SpeedLimiter speed_limiter;
|
||||
ExecuteProgramCallback execute_program_callback;
|
||||
ExitCallback exit_callback;
|
||||
|
||||
std::optional<Service::Services> services;
|
||||
std::optional<Core::Debugger> debugger;
|
||||
std::optional<Service::KernelHelpers::ServiceContext> general_channel_context;
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ enum class PatchSource {
|
|||
Packed,
|
||||
};
|
||||
|
||||
enum class CheatCompatibility {
|
||||
enum class CheatCompatibility : u8 {
|
||||
Incompatible,
|
||||
Compatible,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue