From 32a6373c7a8072bfcb4567417f82f700084b6ab8 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Fri, 25 Jan 2008 18:11:54 +0000 Subject: Fix collision between gotoxy(int,int,int) and DOS djgpp gotoxy(). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3337 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/libdos.h | 1 + 1 file changed, 1 insertion(+) (limited to 'crawl-ref/source/libdos.h') diff --git a/crawl-ref/source/libdos.h b/crawl-ref/source/libdos.h index e5df42f779..2f182fe055 100644 --- a/crawl-ref/source/libdos.h +++ b/crawl-ref/source/libdos.h @@ -10,6 +10,7 @@ void init_libdos(); int get_number_of_lines(); int get_number_of_cols(); +inline void gotoxy_sys(int x, int y) { gotoxy(x, y); } inline void enable_smart_cursor(bool ) { } inline bool is_smart_cursor_enabled() { return (false); } void set_cursor_enabled(bool enabled); -- cgit v1.2.3-54-g00ecf