Skip to content

Commit

Permalink
deimos.curses: Fix definition of setsyx
Browse files Browse the repository at this point in the history
"Few applications will use this feature, most use wmove instead."
  • Loading branch information
CyberShadow committed May 4, 2023
1 parent c205a99 commit ba554cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/deimos/curses.di
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ba554cb

Please sign in to comment.