Skip to content

Commit

Permalink
5.7.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bha-evs committed Aug 20, 2024
1 parent d252b63 commit a6c2a18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/src/bofconio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ bool BofConio::S_Initialize(const BOF_CONIO_PARAM &_rBofConioParam_X)
if (BOF_IS_HANDLE_VALID(Out_h))
{
GetConsoleScreenBufferInfo(Out_h, &ScreenBufferInfo_X);
mConsoleWidth_U32 = ScreenBufferInfo_X.srWindow.Right - ScreenBufferInfo_X.srWindow.Left + 1;
mConsoleHeight_U32 = ScreenBufferInfo_X.srWindow.Bottom - ScreenBufferInfo_X.srWindow.Top + 1;
S_mConsoleWidth_U32 = ScreenBufferInfo_X.srWindow.Right - ScreenBufferInfo_X.srWindow.Left + 1;
S_mConsoleHeight_U32 = ScreenBufferInfo_X.srWindow.Bottom - ScreenBufferInfo_X.srWindow.Top + 1;
}
#else
// struct winsize ScreenBufferInfo_X;
Expand Down
2 changes: 1 addition & 1 deletion tests/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#if defined(NDEBUG) // We are in Release compil
#else
#if defined(_WIN32)
#include <vld.h>
//#include <vld.h>
#endif
#endif

Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bofstd",
"version": "5.7.3.3",
"version": "5.7.4.3",
"description": "The onbings general purpose C++ Multiplatform library",
"dependencies": [
{
Expand Down

0 comments on commit a6c2a18

Please sign in to comment.