From 8fd300ac6feb96f4a98a5cd6e7afb720ae097f5b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 1 Feb 2003 02:15:00 +0000 Subject: [PATCH] movies have no alpha this will cause Sprite to turn off blending if it can may speed up bg's on slower hardware --- stepmania/src/RageMovieTexture.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/RageMovieTexture.cpp b/stepmania/src/RageMovieTexture.cpp index f363898fae..529555beb8 100644 --- a/stepmania/src/RageMovieTexture.cpp +++ b/stepmania/src/RageMovieTexture.cpp @@ -143,6 +143,8 @@ void RageMovieTexture::Create() { HRESULT hr; + m_ActualID.iAlphaBits = 0; + if( FAILED( hr=CoInitialize(NULL) ) ) RageException::Throw( hr_ssprintf(hr, "Could not CoInitialize") );