Skip to content

Commit 3fa8c76

Browse files
committed
fix bad direction
1 parent dc5b400 commit 3fa8c76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

colorable_windows.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,15 +472,15 @@ loop:
472472
continue
473473
}
474474
procGetConsoleScreenBufferInfo.Call(uintptr(w.handle), uintptr(unsafe.Pointer(&csbi)))
475-
csbi.cursorPosition.x -= short(n)
475+
csbi.cursorPosition.x += short(n)
476476
procSetConsoleCursorPosition.Call(uintptr(w.handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))
477477
case 'D':
478478
n, err = strconv.Atoi(buf.String())
479479
if err != nil {
480480
continue
481481
}
482482
procGetConsoleScreenBufferInfo.Call(uintptr(w.handle), uintptr(unsafe.Pointer(&csbi)))
483-
csbi.cursorPosition.x += short(n)
483+
csbi.cursorPosition.x -= short(n)
484484
procSetConsoleCursorPosition.Call(uintptr(w.handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))
485485
case 'E':
486486
n, err = strconv.Atoi(buf.String())

0 commit comments

Comments
 (0)