Merge branch 'master' of github.com:Themaister/SSNES

This commit is contained in:
TwinAphex51224 2011-12-14 01:35:46 +01:00
commit ee43531a99
2 changed files with 3 additions and 2 deletions

View File

@ -179,7 +179,7 @@ static const bool font_enable = true;
// This value should stay close to 60Hz to avoid large pitch changes. // This value should stay close to 60Hz to avoid large pitch changes.
// If your monitor does not run at 60Hz, or something close to it, disable VSync, // If your monitor does not run at 60Hz, or something close to it, disable VSync,
// and leave this at its default. // and leave this at its default.
#ifdef __CELLOS_LV2__ #if defined(__CELLOS_LV2__) || defined(XENON)
static const float refresh_rate = 59.92; static const float refresh_rate = 59.92;
#else #else
static const float refresh_rate = 59.95; static const float refresh_rate = 59.95;

View File

@ -99,7 +99,8 @@ static void set_defaults(void)
def_audio = "ext"; def_audio = "ext";
break; break;
case AUDIO_XENON360: case AUDIO_XENON360:
def_audio = "xenon360"; def_audio = "xenon360";
break;
default: default:
break; break;
} }