Skip to content

Commit ea86990

Browse files
committed
ps1_acorepp remove abort prompt check
1 parent 4fc8433 commit ea86990

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

games/ps1_acorepp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define ACPP_IS_NOT_BUSY 0x1A7FAC
2929
#define ACPP_IS_NOT_PAUSED 0x3BA14
3030
#define ACPP_IS_MAP_OPEN 0x1555EB
31-
#define ACPP_IS_ABORT_PROMPT 0x1FBF5A
31+
#define ACPP_IS_ABORT_PROMPT 0x1FE06C
3232

3333

3434
static uint8_t PS1_ACPP_Status(void);
@@ -72,8 +72,8 @@ static void PS1_ACPP_Inject(void)
7272
if (PS1_MEM_ReadByte(ACPP_IS_MAP_OPEN))
7373
return;
7474

75-
if (PS1_MEM_ReadByte(ACPP_IS_ABORT_PROMPT) == 0x1A)
76-
return;
75+
// if (PS1_MEM_ReadByte(ACPP_IS_ABORT_PROMPT) == 0x4)
76+
// return;
7777

7878
if(xmouse == 0 && ymouse == 0) // if mouse is idle
7979
return;

0 commit comments

Comments
 (0)