More TU Matching in PAL (#469)
* Fix w20Dll linking * Match some more TUs in PAL * Fix NTSC Build
This commit is contained in:
parent
76ad3ea249
commit
42a72ba07f
7 changed files with 138 additions and 22 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#include "dolphin.h"
|
||||
#include "game/memory.h"
|
||||
#include "game/card.h"
|
||||
#include "version.h"
|
||||
|
||||
static void *cardWork;
|
||||
u8 UnMountCnt;
|
||||
|
|
@ -98,7 +99,11 @@ s32 HuCardFormat(s16 slot)
|
|||
|
||||
static void MountCallBack(s32 chan, s32 result)
|
||||
{
|
||||
#if VERSION_ENG
|
||||
UnMountCnt = (1 << chan);
|
||||
#else
|
||||
UnMountCnt |= (1 << chan);
|
||||
#endif
|
||||
}
|
||||
|
||||
s32 HuCardOpen(s16 slot, const char *fileName, CARDFileInfo *fileInfo)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue