Files
pico-loader/arm9/source/patches/arm7/PokemonDownloaderArm7Patch.h
2025-11-23 17:14:17 +01:00

15 lines
364 B
C++

#pragma once
#include "../Patch.h"
#include "LoaderInfo.h"
/// @brief Arm7 patch to make the Pokemon downloader reboot into Pico Loader.
class PokemonDownloaderArm7Patch : public Patch
{
public:
bool FindPatchTarget(PatchContext& patchContext) override;
void ApplyPatch(PatchContext& patchContext) override;
private:
u32* _bootFunction = nullptr;
};