Skip to content

Commit c61fbb8

Browse files
committed
deimos.curses: Fix definition of setsyx
"Few applications will use this feature, most use wmove instead."
1 parent c205a99 commit c61fbb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/deimos/curses.di

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ void getsyx(Y,X)(ref Y y,ref X x) {
10241024
}
10251025
}
10261026

1027-
void getsyx(Y,X)(ref Y y,ref X x) {
1027+
void setsyx(Y,X)(Y y,X x) {
10281028
pragma(inline, true);
10291029
if (newscr) {
10301030
if ((y) == -1 && (x) == -1)

0 commit comments

Comments
 (0)