summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/options.h
diff options
context:
space:
mode:
authorPekka Lampila <pekka.lampila@iki.fi>2014-01-02 17:17:57 +0200
committerPekka Lampila <pekka.lampila@iki.fi>2014-01-02 17:36:31 +0200
commit21c2dfefda72c5d72980022a8816b7f6e5e85839 (patch)
tree5c1a58e4ff721b14b96a56a9193b434a4629c0aa /crawl-ref/source/options.h
parent71400eb16e9fb270aac4da45ee582ec636d5f79f (diff)
downloadcrawl-ref-21c2dfefda72c5d72980022a8816b7f6e5e85839.tar.gz
crawl-ref-21c2dfefda72c5d72980022a8816b7f6e5e85839.zip
Support tile_font_*_size in WebTiles
Except for tile_font_tip_size, since there are no tooltips.
Diffstat (limited to 'crawl-ref/source/options.h')
-rw-r--r--crawl-ref/source/options.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/crawl-ref/source/options.h b/crawl-ref/source/options.h
index f0adab567e..1b419eb058 100644
--- a/crawl-ref/source/options.h
+++ b/crawl-ref/source/options.h
@@ -416,15 +416,19 @@ public:
#ifdef USE_TILE_LOCAL
// font settings
string tile_font_crt_file;
- int tile_font_crt_size;
string tile_font_msg_file;
- int tile_font_msg_size;
string tile_font_stat_file;
- int tile_font_stat_size;
string tile_font_lbl_file;
- int tile_font_lbl_size;
string tile_font_tip_file;
+#endif
+#ifdef USE_TILE
+ int tile_font_crt_size;
+ int tile_font_msg_size;
+ int tile_font_stat_size;
+ int tile_font_lbl_size;
int tile_font_tip_size;
+#endif
+#ifdef USE_TILE_LOCAL
#ifdef USE_FT
bool tile_font_ft_light;
#endif