summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-17 02:02:19 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-17 02:02:19 +0000
commit77e8bbcc1dd439c368a9deb653daed4a6fe82851 (patch)
tree48592e5bbdd5f011f352749c9b0cffe1bfed4c75
parent5f2ee354b41ac6713824a71f8200045b5a684287 (diff)
downloadcrawl-ref-77e8bbcc1dd439c368a9deb653daed4a6fe82851.tar.gz
crawl-ref-77e8bbcc1dd439c368a9deb653daed4a6fe82851.zip
Halving the time before tooltips appear.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9109 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/docs/options_guide.txt2
-rw-r--r--crawl-ref/settings/tiles_options.txt2
-rw-r--r--crawl-ref/source/initfile.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/docs/options_guide.txt b/crawl-ref/docs/options_guide.txt
index 98458b79fb..65cd562f26 100644
--- a/crawl-ref/docs/options_guide.txt
+++ b/crawl-ref/docs/options_guide.txt
@@ -1616,7 +1616,7 @@ tile_key_repeat = true
Whether or not to repeat key presses when they are held down.
By default, keys will repeat.
-tile_tooltip_ms = 1000
+tile_tooltip_ms = 500
The number of milliseconds before a tooltip appears when hovering the
mouse over part of the screen.
diff --git a/crawl-ref/settings/tiles_options.txt b/crawl-ref/settings/tiles_options.txt
index 8fdbfebbcb..e2069446b0 100644
--- a/crawl-ref/settings/tiles_options.txt
+++ b/crawl-ref/settings/tiles_options.txt
@@ -29,7 +29,7 @@
# tile_key_repeat = false
-# tile_tooltip_ms = 1000
+# tile_tooltip_ms = 500
# tile_tag_pref = enemy
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 35ff9d6c22..0ce6da8a26 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -925,7 +925,7 @@ void game_options::reset_options()
tile_window_width = 0;
tile_window_height = 0;
tile_map_pixels = 0;
- tile_tooltip_ms = 1000;
+ tile_tooltip_ms = 500;
tile_tag_pref = crawl_state.arena ? TAGPREF_NAMED : TAGPREF_ENEMY;
#endif