mirror of
https://github.com/vlang/v.git
synced 2025-09-22 20:09:04 -04:00
fix term_windows.v
This commit is contained in:
parent
e9827f5a34
commit
ea9961a8fb
@ -25,8 +25,8 @@ pub fn get_terminal_size() (int, int) {
|
||||
info := CONSOLE_SCREEN_BUFFER_INFO{}
|
||||
|
||||
if C.GetConsoleScreenBufferInfo(C.GetStdHandle(C.STD_OUTPUT_HANDLE), &info) {
|
||||
columns := (info.srWindow.Right - info.srWindow.Left + 1) as int
|
||||
rows := (info.srWindow.Bottom - info.srWindow.Top + 1) as int
|
||||
columns := int(info.srWindow.Right - info.srWindow.Left + 1)
|
||||
rows := int(info.srWindow.Bottom - info.srWindow.Top + 1)
|
||||
return columns, rows
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user