summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-06 09:29:24 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-06 09:29:24 +0000
commit1a3922fd4a76605598293aff58591a77f37c0bb1 (patch)
tree965c54dc6423154ff382c729809ad60ddbb27078 /crawl-ref/source/items.cc
parentcd3044ce7a7ad2f693ee52a4b3b194de34d36d9e (diff)
downloadcrawl-ref-1a3922fd4a76605598293aff58591a77f37c0bb1.tar.gz
crawl-ref-1a3922fd4a76605598293aff58591a77f37c0bb1.zip
Tiles again:
* Store index of last cell clicked on in inventory and suppress item description if you just clicked on it, so you can see the messages describing whatever you just did (should fix 2660578). * Allow right-click as a synonym for '!' when toggling ^, A, m. * Let shift left-click on avatar standing on altar = prayer. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9343 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index e0fec19f33..47cccee2a7 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -1255,12 +1255,9 @@ void pickup()
mprf(MSGCH_PROMPT, "Pick up %s? (y/n/a/*?g,/q)",
get_message_colour_tags(mitm[o], DESC_NOCAP_A,
MSGCH_PROMPT).c_str());
-#ifndef USE_TILE
- keyin = get_ch();
-#else
- // TODO enne - why?
- keyin = getch_ck();
-#endif
+
+ mouse_control mc(MOUSE_MODE_MORE);
+ keyin = getch();
}
if (keyin == '*' || keyin == '?' || keyin == ',' || keyin == 'g'