mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Forgot to un-hardcode size of logo array for the for loop
This commit is contained in:
parent
381b97eb65
commit
cbd04b495d
@ -32,7 +32,7 @@ void R5Dev_Init()
|
||||
#endif // !DEDICATED
|
||||
|
||||
spdlog::info("\n");
|
||||
for (int i = 0; i < 7; i++)
|
||||
for (int i = 0; i < (&R5R_LOGO)[1] - R5R_LOGO; i++)
|
||||
{
|
||||
std::string unescaped = StringEscape(R5R_LOGO[i]);
|
||||
spdlog::info("{}{}{}\n", g_svRedF.c_str(), unescaped.c_str(), g_svReset.c_str());
|
||||
|
Loading…
x
Reference in New Issue
Block a user