aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/gfx/gfx_system.h7
-rw-r--r--engines/sci/gfx/gfx_tools.cpp2
2 files changed, 0 insertions, 9 deletions
diff --git a/engines/sci/gfx/gfx_system.h b/engines/sci/gfx/gfx_system.h
index 1bb098eaa3..49371fdf54 100644
--- a/engines/sci/gfx/gfx_system.h
+++ b/engines/sci/gfx/gfx_system.h
@@ -256,13 +256,6 @@ struct gfx_pixmap_t { /* gfx_pixmap_t: Pixel map */
*/
int color_key;
-
- /*** Data reserved for gfx_driver use ***/
- struct pixmap_internal { /* Internal state management data for use by drivers */
- int handle; /* initialized to 0 */
- void *info; /* initialized to NULL */
- } internal;
-
};
diff --git a/engines/sci/gfx/gfx_tools.cpp b/engines/sci/gfx/gfx_tools.cpp
index 13bff4f0ec..1962f032ed 100644
--- a/engines/sci/gfx/gfx_tools.cpp
+++ b/engines/sci/gfx/gfx_tools.cpp
@@ -128,9 +128,7 @@ gfx_pixmap_t *gfx_new_pixmap(int xl, int yl, int resid, int loop, int cel) {
pxm->alpha_map = NULL;
pxm->data = NULL;
- pxm->internal.info = NULL;
pxm->palette = NULL;
- pxm->internal.handle = 0;
pxm->index_xl = xl;
pxm->index_yl = yl;