diff --git a/stepmania/src/BannerCache.cpp b/stepmania/src/BannerCache.cpp index df04d4c852..f32b44225b 100644 --- a/stepmania/src/BannerCache.cpp +++ b/stepmania/src/BannerCache.cpp @@ -389,7 +389,9 @@ void BannerCache::CacheBannerInternal( CString BannerPath ) SDL_Surface *dst = SDL_CreateRGBSurfaceSane(SDL_SWSURFACE, img->w, img->h, 16, 0x7C00, 0x03E0, 0x001F, 0x8000 ); - SM_SDL_ErrorDiffusionDither(img, dst); + /* SM_SDL_OrderedDither is still faster than SM_SDL_ErrorDiffusionDither, and + * these images are very small and only displayed briefly. */ + SM_SDL_OrderedDither(img, dst); SDL_FreeSurface( img ); img = dst; }