1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 04:09:16 +00:00

Build 918

This commit is contained in:
CyanWorlds
2013-07-05 15:28:19 -07:00
parent 68ba122afe
commit 46a0cf6206
808 changed files with 148802 additions and 77916 deletions

View File

@ -105,7 +105,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "../MaxPlasmaMtls/Layers/plLayerTexBitmapPB.h"
#include "../pfSurface/plLayerAVI.h"
#ifdef USE_BINK_SDK
#include "../pfSurface/plLayerBink.h"
#endif
#include "../MaxComponent/plLightMapComponent.h"
#include "../plDrawable/plGeometrySpan.h"
@ -1999,12 +2001,15 @@ static plLayerInterface* IProcessLayerMovie(plPassMtlBase* mtl, plLayerTex* layT
plLayerMovie* movieLayer = nil;
const char* moviePostfix = nil;
#ifdef USE_BINK_SDK
if (isBink)
{
movieLayer = TRACKED_NEW plLayerBink;
moviePostfix = "_bink";
}
else if (isAvi)
else
#endif // USE_BINK_SDK
if (isAvi)
{
movieLayer = TRACKED_NEW plLayerAVI;
moviePostfix = "_avi";

View File

@ -97,7 +97,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "../plPipeline/plDynamicEnvMap.h"
#include "../pfSurface/plLayerAVI.h"
#ifdef USE_BINK_SDK
#include "../pfSurface/plLayerBink.h"
#endif
#include "../MaxPlasmaMtls/Layers/plPlasmaMAXLayer.h"
#include "../MaxPlasmaMtls/Layers/plLayerTex.h"