Allow more movie types for bgchanges

This commit is contained in:
Devin J. Pohly
2013-06-02 03:41:33 -04:00
parent 1a38ec56fc
commit 4aee1ed738
4 changed files with 18 additions and 2 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ RageTexture* RageTextureManager::LoadTextureInternal( RageTextureID ID )
RageTexture* pTexture;
if( ID.filename == g_sDefaultTextureName )
pTexture = new RageTexture_Default;
else if( sExt == "ogv" || sExt == "avi" || sExt == "mpg" || sExt == "mpeg" )
else if( sExt == "ogv" || sExt == "avi" || sExt == "mpg" || sExt == "mpeg" || sExt == "mp4" || sExt == "mkv" || sExt == "mov" || sExt == "flv" || sExt == "f4v")
pTexture = RageMovieTexture::Create( ID );
else
pTexture = new RageBitmapTexture( ID );