Skip to content

Commit 1bf2b27

Browse files
committed
test
1 parent 2794dbe commit 1bf2b27

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,15 @@ endif
5656

5757
ifeq ($(COH), 1)
5858
CDVDFSV = 0
59-
SIO2MAN = 1
60-
MCMAN = 1
59+
SIO2MAN = 0
60+
MCMAN = 0
6161
EE_OBJS += ioprp.o
6262
EE_LIBS += -liopreboot
6363
LIBPAD = 2
6464
HAS_COH = -COH
6565
EE_CFLAGS += -DSUPPORT_SYSTEM_2X6
6666
HOMEBREW_DONGLEMAN = 1
67+
EE_OBJS += mcman_irx.o
6768
endif
6869

6970
ifeq ($(XFROM),1)

iop/__precompiled/dongleman.irx

-1.97 KB
Binary file not shown.

src/main.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,10 +1160,9 @@ static void loadBasicModules(void)
11601160
#endif
11611161

11621162
#ifdef USE_ROM_MCMAN
1163-
#ifdef SYSTEM_2X6_ACCESS_PS2_CARD
1164-
#warning mc0 (security dongles) will not be accesible
1165-
id = SifLoadStartModule("rom0:MCMANO", 0, NULL, &ret);
1166-
DPRINTF(" [rom0:MCMANO]: id=%d, ret=%d\n", id, ret);
1163+
#ifdef SUPPORT_SYSTEM_2X6
1164+
id = SifExecModuleBuffer(mcman_irx, size_mcman_irx, 0, NULL, &ret); //Home
1165+
DPRINTF(" [DONGLEMAN]: id=%d, ret=%d\n", id, ret);
11671166
#else //SECURITY DONGLE
11681167
id = SifLoadStartModule("rom0:MCMAN", 0, NULL, &ret);
11691168
DPRINTF(" [rom0:MCMAN]: id=%d, ret=%d\n", id, ret);

0 commit comments

Comments
 (0)