Light cleanup

This commit is contained in:
Amos 2022-01-22 15:42:35 +01:00
parent 087a1487ec
commit 3f50736e48
5 changed files with 14 additions and 14 deletions

View File

@ -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");
}

View File

@ -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"(+---------------------------------------------------------------------+)"
};

View File

@ -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);

View File

@ -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;

View File

@ -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:
{