From ba554cbea0b080dac6553dde6126ed2776658da9 Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Thu, 4 May 2023 14:36:19 +0000 Subject: [PATCH] deimos.curses: Fix definition of setsyx "Few applications will use this feature, most use wmove instead." --- source/deimos/curses.di | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/deimos/curses.di b/source/deimos/curses.di index 2eb06ce..b99d956 100644 --- a/source/deimos/curses.di +++ b/source/deimos/curses.di @@ -1024,7 +1024,7 @@ void getsyx(Y,X)(ref Y y,ref X x) { } } -void getsyx(Y,X)(ref Y y,ref X x) { +void setsyx(Y,X)(ref Y y,ref X x) { pragma(inline, true); if (newscr) { if ((y) == -1 && (x) == -1)