Merge pull request #429 from h1-mod/game_console

prevent print spam
This commit is contained in:
Skull 2022-12-31 04:30:49 +03:00 committed by GitHub
commit 2827f4dfba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,10 +269,10 @@ namespace game_console
if (matches.size() > 24) if (matches.size() > 24)
{ {
draw_hint_box(1, dvars::con_inputHintBoxColor->current.vector); draw_hint_box(1, dvars::con_inputHintBoxColor->current.vector);
draw_hint_text(0, utils::string::va("%i matches (too many to show here). Press SHIFT + TAB to show more", matches.size()), draw_hint_text(0, utils::string::va("%i matches (too many to show here, press shift+tilde to open full console)", matches.size()),
dvars::con_inputDvarMatchColor->current.vector); dvars::con_inputDvarMatchColor->current.vector);
if (game::playerKeys[0].keys[game::keyNum_t::K_SHIFT].down && game::playerKeys[0].keys[game::keyNum_t::K_TAB].down) if (GetAsyncKeyState(VK_SHIFT) && GetAsyncKeyState(VK_OEM_3) & 1)
{ {
console::info("]%s\n", con.buffer); console::info("]%s\n", con.buffer);
for (size_t i = 0; i < matches.size(); i++) for (size_t i = 0; i < matches.size(); i++)