diff --git a/README.md b/README.md index e385ea1d..6e0c6ecb 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ # H1-Mod

- +

A client for Call of Duty: Modern Warfare Remastered. diff --git a/assets/github/banner.png b/assets/github/banner.png new file mode 100644 index 00000000..ec35f0f6 Binary files /dev/null and b/assets/github/banner.png differ diff --git a/src/client/component/console.cpp b/src/client/component/console.cpp index 62b9d16e..2fd35434 100644 --- a/src/client/component/console.cpp +++ b/src/client/component/console.cpp @@ -6,6 +6,7 @@ #include "command.hpp" #include "rcon.hpp" +#include "version.hpp" #include #include @@ -269,7 +270,9 @@ namespace console con.cursor = 0; clear_output(); + SetConsoleTextAttribute(OUTPUT_HANDLE, get_attribute(7)); // green invoke_printf("]%s\r\n", con.buffer); + SetConsoleTextAttribute(OUTPUT_HANDLE, get_attribute(con_type_info)); strncpy_s(con.buffer, "", sizeof(con.buffer)); break; } @@ -347,7 +350,7 @@ namespace console printf_hook.create(printf, printf_stub); ShowWindow(GetConsoleWindow(), SW_SHOW); - SetConsoleTitle("H1-Mod"); + SetConsoleTitle("H1-Mod: " VERSION); con.kill_event = CreateEvent(NULL, TRUE, FALSE, NULL); diff --git a/src/client/resources/splash.bmp b/src/client/resources/splash.bmp index f19b71b0..51507f72 100644 Binary files a/src/client/resources/splash.bmp and b/src/client/resources/splash.bmp differ