summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2013-03-16 19:12:00 +0400
committerAndrey Nazarov <skuller@skuller.net>2013-03-19 03:44:50 +0400
commit5e26d243644aedb0f22b73629e0a33644819ee1b (patch)
tree73e2f26b58f38edd7d713356fdd42c711307cee5 /inc
parent8339e8a8bb4c7eb036a027ed41d54c4eaa5b8e46 (diff)
Replace ‘upload_texinfo’ with IF_TURBULENT flag.
Diffstat (limited to 'inc')
-rw-r--r--inc/refresh/images.h2
-rw-r--r--inc/refresh/refresh.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/inc/refresh/images.h b/inc/refresh/images.h
index 9715aa4..1ec99ca 100644
--- a/inc/refresh/images.h
+++ b/inc/refresh/images.h
@@ -99,7 +99,7 @@ extern int registration_sequence;
extern uint32_t d_8to24table[256];
// these are implemented in src/refresh/images.c
-image_t *IMG_Find(const char *name, imagetype_t type);
+image_t *IMG_Find(const char *name, imagetype_t type, imageflags_t flags);
void IMG_FreeUnused(void);
void IMG_FreeAll(void);
void IMG_Init(void);
diff --git a/inc/refresh/refresh.h b/inc/refresh/refresh.h
index 173c423..269a29b 100644
--- a/inc/refresh/refresh.h
+++ b/inc/refresh/refresh.h
@@ -152,6 +152,7 @@ typedef enum {
IF_TRANSPARENT = (1 << 1),
IF_PALETTED = (1 << 2),
IF_SCRAP = (1 << 3),
+ IF_TURBULENT = (1 << 4)
} imageflags_t;
typedef enum {