mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Light cleanup
This commit is contained in:
parent
087a1487ec
commit
3f50736e48
@ -34,8 +34,8 @@ void R5Dev_Init()
|
||||
spdlog::info("\n");
|
||||
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());
|
||||
std::string svEscaped = StringEscape(R5R_LOGO[i]);
|
||||
spdlog::info("{}{}{}\n", g_svRedF.c_str(), svEscaped.c_str(), g_svReset.c_str());
|
||||
}
|
||||
spdlog::info("\n");
|
||||
}
|
||||
|
@ -11,11 +11,11 @@ __declspec(dllexport) void DummyExport()
|
||||
|
||||
const std::string R5R_LOGO[] =
|
||||
{
|
||||
R"(+-----------------------------------------------------------------+)",
|
||||
R"(| ___ ___ ___ _ _ _ ___ __ ___ |)",
|
||||
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) / \| _ ) |)",
|
||||
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / | () | _ \ |)",
|
||||
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)__/|___/ |)",
|
||||
R"(| |)",
|
||||
R"(+-----------------------------------------------------------------+)"
|
||||
R"(+---------------------------------------------------------------------+)",
|
||||
R"(| ___ ___ ___ _ _ _ ___ __ _ _ |)",
|
||||
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) / \ / | |__ |)",
|
||||
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / | () || | '_ \ |)",
|
||||
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)__(_)_|_.__/ |)",
|
||||
R"(| |)",
|
||||
R"(+---------------------------------------------------------------------+)"
|
||||
};
|
||||
|
@ -7,7 +7,7 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
int HSys_Error_Internal(char* fmt, va_list args)
|
||||
{
|
||||
printf("\n______________________________________________________________\n");
|
||||
printf("\n_______________________________________________________________\n");
|
||||
printf("] ENGINE ERROR ################################################\n");
|
||||
vprintf(fmt, args);
|
||||
|
||||
|
@ -341,7 +341,7 @@ std::string StringEscape(const std::string& input)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
case '\'': results += "\\'"; break;
|
||||
//case '\'': results += "\\'"; break;
|
||||
case '\a': results += "\\a"; break;
|
||||
case '\b': results += "\\b"; break;
|
||||
case '\f': results += "\\f"; break;
|
||||
@ -365,7 +365,7 @@ std::string StringUnescape(const std::string& input)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
case '\\': results += "\'"; break;
|
||||
//case '\\': results += "\'"; break;
|
||||
case '\\a': results += "\a"; break;
|
||||
case '\\b': results += "\b"; break;
|
||||
case '\\f': results += "\f"; break;
|
||||
|
@ -248,8 +248,8 @@ int main(int argc, char* argv[], char* envp[])
|
||||
{
|
||||
try
|
||||
{
|
||||
eLaunchMode iinput = (eLaunchMode)std::stoi(input);
|
||||
switch (iinput)
|
||||
eLaunchMode mode = (eLaunchMode)std::stoi(input);
|
||||
switch (mode)
|
||||
{
|
||||
case eLaunchMode::LM_DEBUG_GAME:
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user