mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Merge pull request #1869 from RogueMacro/master
Fix Console.CursorLeft y-coordinate
This commit is contained in:
commit
2beb2231ac
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ namespace System
|
|||
CONSOLE_SCREEN_BUFFER_INFO consoleInfo = .();
|
||||
GetConsoleScreenBufferInfo(handle,out consoleInfo);
|
||||
|
||||
SetConsoleCursorPosition(handle, COORD((.)value,(.)consoleInfo.mCursorPosition[0]));
|
||||
SetConsoleCursorPosition(handle, COORD((.)value,(.)consoleInfo.mCursorPosition[1]));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue