diff --git a/stepmania/src/ScreenOptionsMasterPrefs.cpp b/stepmania/src/ScreenOptionsMasterPrefs.cpp index 7ad93af1ba..7b9803dcd0 100644 --- a/stepmania/src/ScreenOptionsMasterPrefs.cpp +++ b/stepmania/src/ScreenOptionsMasterPrefs.cpp @@ -467,6 +467,7 @@ static const ConfOption g_ConfOptions[] = ConfOption( "Texture\nColor", TextureColor, "16BIT","32BIT" ), ConfOption( "Movie\nColor", MovieColor, "16BIT","32BIT" ), ConfOption( "Keep Textures\nIn Memory", KeepTexturesInMemory, "NO","YES" ), + ConfOption( "AntiAliasing", AntiAliasing, "OFF","YES" ), ConfOption( "Refresh\nRate", RefreshRate, "DEFAULT","60","70","72","75","80","85","90","100","120","150" ), ConfOption( "Wait For\nVsync", WaitForVsync, "NO", "YES" ), ConfOption( "Show\nStats", ShowStats, "OFF","ON" ), @@ -494,6 +495,7 @@ int ConfOption::GetEffects() const { DisplayColor, OPT_APPLY_GRAPHICS }, { TextureResolution, OPT_APPLY_GRAPHICS }, { KeepTexturesInMemory, OPT_APPLY_GRAPHICS }, + { AntiAliasing, OPT_APPLY_GRAPHICS }, { RefreshRate, OPT_APPLY_GRAPHICS }, { WaitForVsync, OPT_APPLY_GRAPHICS }, { GameSel, OPT_RESET_GAME },