Skip to content

Commit c17131f

Browse files
committed
PMD EoS isn't supported, actually
1 parent 7428eb4 commit c17131f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ TWLSaveTool is a 3DS homebrew that allows you to read, write, and erase save fil
88
**The 3dsx build** requires you to have either PokéTransporter or Pokémon Dream Radar installed on your 3DS. In both cases you'll need to pay to be able to download them.
99

1010
## Compatibility list
11-
**All games** except WarioWare D.I.Y., Band Brothers DX, Art Academy DS, and Pokémon Typing Adventure should be supported.
11+
**All games** except [Pokémon Mystery Dungeon: Explorers of Sky](https://cdn.pbrd.co/images/1muFpaDE.png), WarioWare D.I.Y., Band Brothers DX, Art Academy DS, and Pokémon Typing Adventure should be supported.
1212

1313
## How to build
1414
Have libctru and devkitARM correctly installed and set up, as well as makerom and bannertool in an accessible path, then run: ```make```

source/TWLCard.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ TWLCard::TWLCard(void) : twl(false), h(Header()), cardType_(NO_CHIP) {
151151
h = Header(data);
152152
delete[] data;
153153

154+
if(h.gameTitle == "POKEDUN SORA") throw std::runtime_error("sorry, TWLSaveTool completely fucks up on this particular game");
155+
154156
res = SPIGetCardType(&cardType_, (h.gameCode[0] == 'I') ? 1 : 0); // automatic infrared chip detection often fails
155157
if(res != 0) { throw Error(res,__FILE__, __LINE__); }
156158

0 commit comments

Comments
 (0)