summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libw32c.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-17 13:11:17 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-17 13:11:17 +0000
commita8855a831f9a789f19e2525962d0e5c4a8463a18 (patch)
tree0a2b9caa6732a4cfa392df0352649a6cfccdff1c /crawl-ref/source/libw32c.cc
parent39379c48505b14bfbe8ac8292e5938ad33d5989a (diff)
downloadcrawl-ref-a8855a831f9a789f19e2525962d0e5c4a8463a18.tar.gz
crawl-ref-a8855a831f9a789f19e2525962d0e5c4a8463a18.zip
An attempt at a more comprehensive fix for cursor inconsistencies between
platforms. We'll probably need to tweak this further. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@659 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libw32c.cc')
-rw-r--r--crawl-ref/source/libw32c.cc15
1 files changed, 10 insertions, 5 deletions
diff --git a/crawl-ref/source/libw32c.cc b/crawl-ref/source/libw32c.cc
index 294ad71522..1905c5bd56 100644
--- a/crawl-ref/source/libw32c.cc
+++ b/crawl-ref/source/libw32c.cc
@@ -432,18 +432,23 @@ void deinit_libw32c(void)
SetConsoleTitle( oldTitle );
}
-void _setcursortype(int curstype)
+void set_cursor_enabled(bool enabled)
{
if (!w32_smart_cursor)
- _setcursortype_internal(curstype);
+ _setcursortype_internal(enabled);
}
-void _setcursortype_internal(int curstype)
+bool is_cursor_enabled()
+{
+ return (current_cursor);
+}
+
+void _setcursortype_internal(bool curstype)
{
CONSOLE_CURSOR_INFO cci;
if (curstype == current_cursor)
- return;
+ return;
cci.dwSize = 5;
cci.bVisible = curstype? TRUE : FALSE;
@@ -455,7 +460,7 @@ void _setcursortype_internal(int curstype)
// now, if we just changed from NOCURSOR to CURSOR,
// actually move screen cursor
if (current_cursor != _NOCURSOR)
- gotoxy(cx+1, cy+1);
+ gotoxy(cx+1, cy+1);
}
void clrscr(void)