summaryrefslogtreecommitdiff
path: root/src/z-term.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-03-03 20:59:35 +0100
committerBardur Arantsson <bardur@scientician.net>2012-03-29 20:57:25 +0200
commit1d054725dd5165d349f5c8fd425e6161bf67c6f5 (patch)
treef663a2c46c02a4093b44823736f65201f550cfb3 /src/z-term.h
parentc033064404865fd1cccad23e36ce195fca92c64d (diff)
Refactor: USE_TRANSPARENCY compile-time flag always set
Diffstat (limited to 'src/z-term.h')
-rw-r--r--src/z-term.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/z-term.h b/src/z-term.h
index e5371825..31e5b308 100644
--- a/src/z-term.h
+++ b/src/z-term.h
@@ -48,7 +48,6 @@ struct term_win
byte *va;
char *vc;
-#ifdef USE_TRANSPARENCY
byte **ta;
char **tc;
@@ -61,8 +60,6 @@ struct term_win
byte *vea;
char *vec;
-#endif /* USE_TRANSPARENCY */
-
};
@@ -232,11 +229,7 @@ struct term
void (*resize_hook)(void);
-#ifdef USE_TRANSPARENCY
errr (*pict_hook)(int x, int y, int n, const byte *ap, const char *cp, const byte *tap, const char *tcp, const byte *eap, const char *ecp);
-#else /* USE_TRANSPARENCY */
- errr (*pict_hook)(int x, int y, int n, const byte *ap, const char *cp);
-#endif /* USE_TRANSPARENCY */
};
@@ -301,16 +294,8 @@ extern char scansubdir_dir[1024];
extern int scansubdir_max;
extern cptr scansubdir_result[255];
-#ifdef USE_TRANSPARENCY
extern void Term_queue_char(int x, int y, byte a, char c, byte ta, char tc, byte ea, char ec);
-
extern void Term_queue_line(int x, int y, int n, byte *a, char *c, byte *ta, char *tc, byte *ea, char *ec);
-#else /* USE_TRANSPARENCY */
-extern void Term_queue_char(int x, int y, byte a, char c);
-
-extern void Term_queue_line(int x, int y, int n, byte *a, char *c);
-#endif /* USE_TRANSPARENCY */
-
extern void Term_queue_chars(int x, int y, int n, byte a, cptr s);
extern errr Term_fresh(void);