diff --git a/config.def.h b/config.def.h index 8991ee10bb..4286f63642 100644 --- a/config.def.h +++ b/config.def.h @@ -176,7 +176,7 @@ static const bool font_enable = true; // 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, // and leave this at its default. -#ifdef __CELLOS_LV2__ +#if defined(__CELLOS_LV2__) || defined(XENON) static const float refresh_rate = 59.92; #else static const float refresh_rate = 59.95; diff --git a/settings.c b/settings.c index d0a4c2f6c7..619c83a317 100644 --- a/settings.c +++ b/settings.c @@ -99,7 +99,7 @@ static void set_defaults(void) def_audio = "ext"; break; case AUDIO_XENON360: - def_audio = "xenon360"; + def_audio = "xenon360"; default: break; }