mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
14 lines
314 B
C++
14 lines
314 B
C++
#pragma once
|
|
#include "../Patch.h"
|
|
|
|
/// @brief Arm7 patch to disabling clearing of wram.
|
|
class DisableArm7WramClearPatch : public Patch
|
|
{
|
|
public:
|
|
bool FindPatchTarget(PatchContext& patchContext) override;
|
|
void ApplyPatch(PatchContext& patchContext) override;
|
|
|
|
private:
|
|
u32* _clearEndPool = nullptr;
|
|
};
|