mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 01:06:50 +02:00
9 lines
261 B
C++
9 lines
261 B
C++
#pragma once
|
|
#include "../OverlayPatch.h"
|
|
|
|
/// @brief Arm9 overlay patch to disable the Pokemon Black & White 2 IR-sensor anti-piracy.
|
|
class PokemonBw2IrApPatch : public OverlayPatch
|
|
{
|
|
public:
|
|
const void* InsertPatch(PatchContext& patchContext) override;
|
|
}; |