1
0
mirror of synced 2024-11-28 03:20:48 +01:00

Add outrun

This commit is contained in:
Bobby Dilley 2022-07-19 13:50:36 +01:00
parent 67ece4adeb
commit 97b7ebada6
2 changed files with 12 additions and 1 deletions

View File

@ -26,6 +26,14 @@ static int detectGame()
return 0; return 0;
} }
if (strstr(program_invocation_name, "Jennifer") || strstr(program_invocation_name, "JenTest"))
{
config.game = OUTRUN;
config.emulateDriveboard = 1;
config.emulateMotionboard = 1;
return 0;
}
config.game = UNKNOWN; config.game = UNKNOWN;
return 1; return 1;
} }
@ -36,6 +44,8 @@ char *getGameName()
{ {
case SEGABOOT: case SEGABOOT:
return "SEGABOOT"; return "SEGABOOT";
case OUTRUN:
return "Outrun 2 SP";
case THE_HOUSE_OF_THE_DEAD_4: case THE_HOUSE_OF_THE_DEAD_4:
return "The House of the Dead 4"; return "The House of the Dead 4";
default: default:

View File

@ -5,7 +5,8 @@
typedef enum { typedef enum {
UNKNOWN, UNKNOWN,
SEGABOOT, SEGABOOT,
THE_HOUSE_OF_THE_DEAD_4 THE_HOUSE_OF_THE_DEAD_4,
OUTRUN
} Game; } Game;
typedef struct typedef struct