From 7a53fca5b578c568c5dfc4e3c0eba97d352b5544 Mon Sep 17 00:00:00 2001 From: Ahrimdon Date: Tue, 27 Feb 2024 02:50:18 -0500 Subject: [PATCH] Remove branding --- src/client/component/branding.cpp | 4 ++-- src/client/component/game_console.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/component/branding.cpp b/src/client/component/branding.cpp index 3602fb4..d2f371a 100644 --- a/src/client/component/branding.cpp +++ b/src/client/component/branding.cpp @@ -38,7 +38,7 @@ namespace branding return; } - localized_strings::override("LUA_MENU_LEGAL_COPYRIGHT", "iw6-mod: " VERSION " by AlterWare.\n"); + localized_strings::override("LUA_MENU_LEGAL_COPYRIGHT", "iw6-mod: " VERSION "\n"); utils::hook::call(SELECT_VALUE(0x1403BDABA, 0x140414424), dvar_set_string_stub); ui_get_formatted_build_number_hook.create( @@ -50,7 +50,7 @@ namespace branding const auto y = 0; const auto scale = 0.5f; float color[4] = {0.666f, 0.666f, 0.666f, 0.666f}; - const auto* text = "iw6-mod: " VERSION; + const auto* text = ""; auto* font = game::R_RegisterFont("fonts/normalfont"); if (!font) return; diff --git a/src/client/component/game_console.cpp b/src/client/component/game_console.cpp index 5b8fe91..7b08a8b 100644 --- a/src/client/component/game_console.cpp +++ b/src/client/component/game_console.cpp @@ -185,7 +185,7 @@ namespace game_console con.globals.left_x = con.screen_min[0] + 6.0f; draw_input_box(1, dvars::con_inputBoxColor->current.vector); - draw_input_text_and_over("iw6-mod: " VERSION ">", color_iw6); + draw_input_text_and_over("iw6-mod: >", color_iw6); con.globals.left_x = con.globals.x; con.globals.auto_complete_choice[0] = 0;