Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-12-06 22:48:37 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-06 22:48:37 +0300
commitcd4a60f5362b951826de8fc4218d30969c38095c (patch)
treee699411275651bd998a7ec5673116cb5c4218a2d /source/blender/src/writeimage.c
parentfd05cdbaad4058520759478794a37a6204e8f0a3 (diff)
sgefants patch to remove the License Key stuff.
(I noticed its not completely gone yet from the blender/source dir) But its a big step in the right direction if it doesn't enable all of the functionatlity already... (Using cscope for LICENSE_KEY_VALID still turns up some stuff) Kent -- mein@cs.umn.edu
Diffstat (limited to 'source/blender/src/writeimage.c')
-rw-r--r--source/blender/src/writeimage.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/src/writeimage.c b/source/blender/src/writeimage.c
index b2c224c2f3a..42ac7ae8e45 100644
--- a/source/blender/src/writeimage.c
+++ b/source/blender/src/writeimage.c
@@ -36,7 +36,6 @@
#include "DNA_texture_types.h" // EnvMap{}
#include "DNA_image_types.h" // Image{}
#include "render.h"
-#include "license_key.h" // LICENSE_KEY_VALID
#include "BKE_utildefines.h" // ELEM
#include "BIF_writeimage.h"
@@ -51,7 +50,7 @@ int BIF_write_ibuf(ImBuf *ibuf, char *name)
/* to be used for e.g. envmap, not rendered images */
if(R.r.imtype== R_IRIS) ibuf->ftype= IMAGIC;
- else if ((R.r.imtype==R_PNG) && (LICENSE_KEY_VALID)) {
+ else if ((R.r.imtype==R_PNG)) {
ibuf->ftype= PNG;
}
else if ((R.r.imtype==R_TARGA) || (R.r.imtype==R_PNG)) {