From e0419dde15245e7733b36bf1f8ff8eb8685e044a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 21 Apr 2010 06:42:48 +0000 Subject: [PATCH] - fixed: Camera textures may not be used as patch. SVN r2296 (trunk) --- src/textures/multipatchtexture.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/textures/multipatchtexture.cpp b/src/textures/multipatchtexture.cpp index 0e4b9bc8f..90c52dd63 100644 --- a/src/textures/multipatchtexture.cpp +++ b/src/textures/multipatchtexture.cpp @@ -499,6 +499,8 @@ void FMultiPatchTexture::MakeTexture () { for (int i = 0; i < NumParts; ++i) { + if (Parts[i].Texture->bHasCanvas) continue; // cannot use camera textures as patch. + BYTE *trans = Parts[i].Translation ? Parts[i].Translation->Remap : NULL; { if (Parts[i].Blend != 0) @@ -561,6 +563,8 @@ int FMultiPatchTexture::CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rota for(int i = 0; i < NumParts; i++) { int ret = -1; + + if (Parts[i].Texture->bHasCanvas) continue; // cannot use camera textures as patch. // rotated multipatch parts cannot be composited directly bool rotatedmulti = Parts[i].Rotate != 0 && Parts[i].Texture->bMultiPatch;