From db042a60b3431253684187108478fb6c626fdffb Mon Sep 17 00:00:00 2001 From: mjkzy Date: Thu, 2 Jun 2022 14:50:30 -0500 Subject: [PATCH] define as macro --- src/client/component/console.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/client/component/console.cpp b/src/client/component/console.cpp index f1f2fab0..00aa6fbc 100644 --- a/src/client/component/console.cpp +++ b/src/client/component/console.cpp @@ -7,7 +7,8 @@ #include #include -#define CONSOLE_BUFFER_SIZE 16384 +#define CONSOLE_BUFFER_SIZE 16384 +#define WINDOW_WIDTH 608 namespace console { @@ -128,13 +129,11 @@ namespace console } // create the input line - const auto window_width = 608; - utils::hook::set(game::s_wcd::hwndInputLine, CreateWindowExA( - 0, "edit", nullptr, 0x50800080u, 6, 400, window_width, 20, *game::s_wcd::hWnd, + 0, "edit", nullptr, 0x50800080u, 6, 400, WINDOW_WIDTH, 20, *game::s_wcd::hWnd, reinterpret_cast(0x65), h_instance, nullptr)); utils::hook::set(game::s_wcd::hwndBuffer, CreateWindowExA( - 0, "edit", nullptr, 0x50A00844u, 6, 70, window_width, 324, *game::s_wcd::hWnd, + 0, "edit", nullptr, 0x50A00844u, 6, 70, WINDOW_WIDTH, 324, *game::s_wcd::hWnd, reinterpret_cast(0x64), h_instance, nullptr)); SendMessageA(*game::s_wcd::hwndBuffer, WM_SETFONT, reinterpret_cast(*game::s_wcd::hfBufferFont), 0);