Skip to content

Commit

Permalink
Hardcoding version and timestamp into format string.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Sep 15, 2015
1 parent d28a749 commit 8f50a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SADXModLoader/dllmain.cpp
Expand Up @@ -1892,8 +1892,8 @@ static void __cdecl InitMods(void)
if (dbgConsole || dbgScreen || dbgFile)
{
WriteJump((void *)PrintDebug, (void *)SADXDebugOutput);
PrintDebug("SADX Mod Loader v%s (API version %d), built %s\n",
VERSION_STRING, ModLoaderVer, __TIMESTAMP__);
PrintDebug("SADX Mod Loader v" VERSION_STRING " (API version %d), built " __TIMESTAMP__ "\n",
ModLoaderVer);
#ifdef MODLOADER_GIT_VERSION
#ifdef MODLOADER_GIT_DESCRIBE
PrintDebug("%s, %s\n", MODLOADER_GIT_VERSION, MODLOADER_GIT_DESCRIBE);
Expand Down

0 comments on commit 8f50a11

Please sign in to comment.