mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
14 lines
382 B
C++
14 lines
382 B
C++
#pragma once
|
|
#include "../OverlayHookPatch.h"
|
|
|
|
/// @brief Arm9 patch to apply patches to overlays when they are loaded in Golden Sun Dark Dawn.
|
|
class GoldenSunDarkDawnOverlayHookPatch : public OverlayHookPatch
|
|
{
|
|
public:
|
|
bool FindPatchTarget(PatchContext& patchContext) override;
|
|
void ApplyPatch(PatchContext& patchContext) override;
|
|
|
|
private:
|
|
u32* _overlayStartFunc;
|
|
};
|