More TU Matching in PAL (#469)

* Fix w20Dll linking

* Match some more TUs in PAL

* Fix NTSC Build
This commit is contained in:
Liam Coleman 2024-11-16 21:02:31 -06:00 committed by GitHub
parent 76ad3ea249
commit 42a72ba07f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 138 additions and 22 deletions

View file

@ -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)