Skip to content

Commit

Permalink
Plugin: version printout tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
TheIronWolfModding committed Dec 15, 2018
1 parent 9872cf8 commit 90e02eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/rFactor2SharedMemoryMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ void SharedMemoryPlugin::Startup(long version)
{
// Print out configuration.
#ifdef VERSION_AVX2
DEBUG_MSG2(DebugLevel::CriticalInfo, "Starting rFactor 2 Shared Memory Map Plugin 64bit Version:", SHARED_MEMORY_VERSION " AVX2+PGO");
#ifdef VERSION_MT
DEBUG_MSG2(DebugLevel::CriticalInfo, "Starting rFactor 2 Shared Memory Map Plugin 64bit Version:", SHARED_MEMORY_VERSION " AVX2+PGO+MT");
#else
DEBUG_MSG2(DebugLevel::CriticalInfo, "Starting rFactor 2 Shared Memory Map Plugin 64bit Version:", SHARED_MEMORY_VERSION " AVX2+PGO");
#endif
#else
DEBUG_MSG2(DebugLevel::CriticalInfo, "Starting rFactor 2 Shared Memory Map Plugin 64bit Version:", SHARED_MEMORY_VERSION);
#endif
Expand Down
Binary file modified pgo/rFactor2SharedMemoryMapPlugin64_saved_mt.pgd
Binary file not shown.

0 comments on commit 90e02eb

Please sign in to comment.