Navigation Menu

Skip to content

Commit

Permalink
Hardcoding version string, removing need for config.SADXModLoader.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Jul 9, 2015
1 parent 2992883 commit 4aaa843
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions SADXModLoader/dllmain.cpp
Expand Up @@ -30,7 +30,6 @@ using std::vector;
#include <shlwapi.h>
#include <gdiplus.h>

#include "config.SADXModLoader.h"
#include "git.h"

#include "IniFile.hpp"
Expand Down Expand Up @@ -1899,8 +1898,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",
MODLOADER_VERSION_STRING, ModLoaderVer, __TIMESTAMP__);
PrintDebug("SADX Mod Loader v3.2 (API version %d), built %s\n",
ModLoaderVer, __TIMESTAMP__);
#ifdef MODLOADER_GIT_VERSION
#ifdef MODLOADER_GIT_DESCRIBE
PrintDebug("%s, %s\n", MODLOADER_GIT_VERSION, MODLOADER_GIT_DESCRIBE);
Expand Down

0 comments on commit 4aaa843

Please sign in to comment.