small changes
This commit is contained in:
parent
4fbc2bf4ce
commit
4f5b7db24c
@ -31,8 +31,8 @@ namespace console
|
|||||||
return nativeconsole;
|
return nativeconsole;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool ingame = false;
|
static volatile bool ingame = false;
|
||||||
static bool exit = false;
|
static volatile bool exit = false;
|
||||||
|
|
||||||
DWORD WINAPI console(LPVOID)
|
DWORD WINAPI console(LPVOID)
|
||||||
{
|
{
|
||||||
@ -203,7 +203,7 @@ namespace console
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_CHAR:
|
case WM_CHAR:
|
||||||
auto key = wparam;
|
const auto key = wparam;
|
||||||
|
|
||||||
// enter the line
|
// enter the line
|
||||||
if (key == VK_RETURN)
|
if (key == VK_RETURN)
|
||||||
@ -211,7 +211,7 @@ namespace console
|
|||||||
memset(dest, 0, sizeof(dest));
|
memset(dest, 0, sizeof(dest));
|
||||||
memset(s_wcd.consoleText, 0, sizeof(s_wcd.consoleText));
|
memset(s_wcd.consoleText, 0, sizeof(s_wcd.consoleText));
|
||||||
|
|
||||||
auto length = GetWindowTextA(s_wcd.hwndInputLine, s_wcd.consoleText, sizeof(s_wcd.consoleText));
|
const auto length = GetWindowTextA(s_wcd.hwndInputLine, s_wcd.consoleText, sizeof(s_wcd.consoleText));
|
||||||
if (length)
|
if (length)
|
||||||
{
|
{
|
||||||
sprintf_s(dest, sizeof(s_wcd.consoleText), "]%s\n", s_wcd.consoleText);
|
sprintf_s(dest, sizeof(s_wcd.consoleText), "]%s\n", s_wcd.consoleText);
|
||||||
|
Loading…
Reference in New Issue
Block a user