Add VF5 and emulate text
This commit is contained in:
parent
9da05e97dc
commit
54272aef11
@ -18,7 +18,7 @@ Working is defined by getting into attract mode and running the game, but not ne
|
||||
- The House Of The Dead 4
|
||||
- The House Of The Dead 4 Special
|
||||
- The House Of The Dead Ex
|
||||
- Virtua Fighter 5 (boots to dongle error)
|
||||
- Virtua Fighter 5
|
||||
|
||||
## Games that do not work or haven't been tested
|
||||
|
||||
|
@ -82,11 +82,17 @@ static int detectGame()
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (strstr(program_invocation_name, "dsr"))
|
||||
if (strstr(program_invocation_name, "dsr"))
|
||||
{
|
||||
config.game = RTUNED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (strstr(program_invocation_name, "vf5"))
|
||||
{
|
||||
config.game = VF5;
|
||||
return 0;
|
||||
}
|
||||
|
||||
config.game = UNKNOWN;
|
||||
return 1;
|
||||
@ -114,6 +120,8 @@ char *getGameName()
|
||||
return "SEGA Race TV";
|
||||
case RTUNED:
|
||||
return "R-Tuned Ultimate Street Racing";
|
||||
case VF5:
|
||||
return "Virtua Fighter 5";
|
||||
default:
|
||||
return "Unknown Game";
|
||||
}
|
||||
|
@ -14,7 +14,8 @@ typedef enum
|
||||
LETS_GO_JUNGLE,
|
||||
ABC,
|
||||
SRTV,
|
||||
RTUNED
|
||||
RTUNED,
|
||||
VF5
|
||||
} Game;
|
||||
|
||||
typedef enum
|
||||
|
@ -150,7 +150,7 @@ void __attribute__((constructor)) hook_init()
|
||||
|
||||
securityBoardSetDipResolution(getConfig()->width, getConfig()->height);
|
||||
|
||||
printf("Loader init success\n");
|
||||
printf("Now emulating %s\n", getGameName());
|
||||
}
|
||||
|
||||
int open(const char *pathname, int flags)
|
||||
|
Loading…
Reference in New Issue
Block a user