File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -472,15 +472,15 @@ loop:
472
472
continue
473
473
}
474
474
procGetConsoleScreenBufferInfo .Call (uintptr (w .handle ), uintptr (unsafe .Pointer (& csbi )))
475
- csbi .cursorPosition .x - = short (n )
475
+ csbi .cursorPosition .x + = short (n )
476
476
procSetConsoleCursorPosition .Call (uintptr (w .handle ), * (* uintptr )(unsafe .Pointer (& csbi .cursorPosition )))
477
477
case 'D' :
478
478
n , err = strconv .Atoi (buf .String ())
479
479
if err != nil {
480
480
continue
481
481
}
482
482
procGetConsoleScreenBufferInfo .Call (uintptr (w .handle ), uintptr (unsafe .Pointer (& csbi )))
483
- csbi .cursorPosition .x + = short (n )
483
+ csbi .cursorPosition .x - = short (n )
484
484
procSetConsoleCursorPosition .Call (uintptr (w .handle ), * (* uintptr )(unsafe .Pointer (& csbi .cursorPosition )))
485
485
case 'E' :
486
486
n , err = strconv .Atoi (buf .String ())
You can’t perform that action at this time.
0 commit comments