diff options
author | Arisotura <thetotalworm@gmail.com> | 2020-01-28 21:32:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 21:32:29 +0100 |
commit | 12732aa51b25a3a952b2ef554fda18168111cdd0 (patch) | |
tree | f4b659c84263259a811b842d2dc51af9b801d6ff /src/NDSCart.cpp | |
parent | 3984491ccec4630091bbb178c7c0b22aa4e5e937 (diff) | |
parent | 22d11209b0466e3c852da543ddfc512b66735bc2 (diff) |
Merge pull request #550 from rzumer/slot2
Support GBA game cartridges for DS connectivity
Diffstat (limited to 'src/NDSCart.cpp')
-rw-r--r-- | src/NDSCart.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/NDSCart.cpp b/src/NDSCart.cpp index 0ecd304..014ae5a 100644 --- a/src/NDSCart.cpp +++ b/src/NDSCart.cpp @@ -48,7 +48,6 @@ void Write_Null(u8 val, bool islast); void Write_EEPROMTiny(u8 val, bool islast); void Write_EEPROM(u8 val, bool islast); void Write_Flash(u8 val, bool islast); -void Write_Discover(u8 val, bool islast); bool Init() @@ -399,7 +398,7 @@ void Write(u8 val, u32 hold) switch (CurCmd) { case 0x00: - // Pokémon carts have an IR transceiver thing, and send this + // PokĂ©mon carts have an IR transceiver thing, and send this // to bypass it and access SRAM. // TODO: design better CurCmd = val; |