File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 11#pragma once
22
33// ZeeTerminal Source Code Version
4- constexpr const char * ZT_VERSION = " 0.4.2 " ;
4+ constexpr const char * ZT_VERSION = " 0.4.3 " ;
55
66// Array size for all argument arrays
77constexpr int nArgArraySize = 128 ;
Original file line number Diff line number Diff line change @@ -454,16 +454,10 @@ void ClearKeyboardBuffer() {
454454
455455// Function to set console cursor position
456456inline void SetCursorPosition (int x, int y) {
457-
458- if (!bAnsiVTSequences) {
459- COORD CursorPos{};
460- CursorPos.X = x;
461- CursorPos.Y = y;
462- SetConsoleCursorPosition (GetStdHandle (STD_OUTPUT_HANDLE), CursorPos);
463- }
464- else {
465- std::cout << " \033 [" << y + 1 << " ;" << x + 1 << " H" ;
466- }
457+ COORD CursorPos{};
458+ CursorPos.X = x;
459+ CursorPos.Y = y;
460+ SetConsoleCursorPosition (GetStdHandle (STD_OUTPUT_HANDLE), CursorPos);
467461
468462 return ;
469463}
You can’t perform that action at this time.
0 commit comments