Merge pull request #110 from funbars/run2

fix runahead
This commit is contained in:
Twinaphex 2019-05-10 17:06:57 +02:00 committed by GitHub
commit 8a78001f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1040 additions and 1027 deletions

File diff suppressed because it is too large Load Diff

View File

@ -38,6 +38,7 @@ int setting_pce_multitap = 1;
int setting_pce_scaling = 0;
uint32_t setting_pce_cdspeed = 1;
std::string setting_pce_cdbios = "syscard3.pce";
std::string setting_pce_gecdbios = "gexpress.pce";
uint64 MDFN_GetSettingUI(const char *name)
{
@ -135,6 +136,8 @@ std::string MDFN_GetSettingS(const char *name)
{
if (!strcmp("pce.cdbios", name))
return setting_pce_cdbios;
if (!strcmp("pce.gecdbios", name))
return setting_pce_gecdbios;
/* FILESYS */
if (!strcmp("filesys.path_firmware", name))
return retro_base_directory;

View File

@ -20,6 +20,7 @@ extern int setting_pce_multitap;
extern int setting_pce_scaling;
extern uint32_t setting_pce_cdspeed;
extern std::string setting_pce_cdbios;
extern std::string setting_pce_gecdbios;
// This should assert() or something if the setting isn't found, since it would
// be a totally tubular error!