diff options
author | Raphaël Zumer <rzumer@tebako.net> | 2019-12-09 06:09:52 -0500 |
---|---|---|
committer | Raphaël Zumer <rzumer@tebako.net> | 2019-12-09 06:09:52 -0500 |
commit | 5a7600dc79454869c6d6dfe56bf74afea2162d25 (patch) | |
tree | 6191f25555f926de6868c970e3586001fff1f307 | |
parent | 4e8b0c8ce451bc11de8b11b4da14a24242c8c34e (diff) |
Fix "é" character encoding in NDS.cpp
-rw-r--r-- | src/NDSCart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NDSCart.cpp b/src/NDSCart.cpp index 4d24000..014ae5a 100644 --- a/src/NDSCart.cpp +++ b/src/NDSCart.cpp @@ -398,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; |