From 9e8b8c3c09685f85efe8950cce20556d75e884ee Mon Sep 17 00:00:00 2001 From: Kyzentun Date: Sun, 31 Aug 2014 04:32:12 -0600 Subject: [PATCH] Changed ColorDepth prefs defaults to 32-bit. --- src/PrefsManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PrefsManager.cpp b/src/PrefsManager.cpp index 64d742babc..881db915e9 100644 --- a/src/PrefsManager.cpp +++ b/src/PrefsManager.cpp @@ -169,9 +169,9 @@ PrefsManager::PrefsManager() : m_iDisplayWidth ( "DisplayWidth", 854 ), m_iDisplayHeight ( "DisplayHeight", 480 ), m_fDisplayAspectRatio ( "DisplayAspectRatio", 16/9.f, ValidateDisplayAspectRatio ), - m_iDisplayColorDepth ( "DisplayColorDepth", 16 ), - m_iTextureColorDepth ( "TextureColorDepth", 16 ), - m_iMovieColorDepth ( "MovieColorDepth", 16 ), + m_iDisplayColorDepth ( "DisplayColorDepth", 32 ), + m_iTextureColorDepth ( "TextureColorDepth", 32 ), + m_iMovieColorDepth ( "MovieColorDepth", 32 ), m_bStretchBackgrounds ( "StretchBackgrounds", false ), m_BGFitMode("BackgroundFitMode", BFM_CoverPreserve), m_HighResolutionTextures ( "HighResolutionTextures", HighResolutionTextures_Auto ),