diff options
Diffstat (limited to 'csgo-loader/csgo-client/Client.hpp')
| -rw-r--r-- | csgo-loader/csgo-client/Client.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csgo-loader/csgo-client/Client.hpp b/csgo-loader/csgo-client/Client.hpp index 016e3d3..0f89669 100644 --- a/csgo-loader/csgo-client/Client.hpp +++ b/csgo-loader/csgo-client/Client.hpp @@ -33,11 +33,11 @@ namespace Utils // Allow console to access output stream.
FILE *file;
- freopen_s(&file, "CONOUT$", "w", stdout);
+ freopen_s(&file, STR("CONOUT$"), STR("w"), stdout);
// :^)
- SetConsoleTitleA("moneyclient $");
+ SetConsoleTitleA(STR("moneyclient $"));
- printf("[DEBUG] Hello!\n");
+ printf(STR("[DEBUG] Hello!\n"));
}
}
\ No newline at end of file |
