Missed a spot on Linux.

This commit is contained in:
Jason Felds
2015-10-02 22:18:31 -04:00
parent 99b79e5410
commit b7c62ee645
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1080,6 +1080,7 @@ int sm_main(int argc, char* argv[])
CommandLineActions::Handle(pLoadingWindow); CommandLineActions::Handle(pLoadingWindow);
// Aldo: Check for updates here! // Aldo: Check for updates here!
#if 0
if( /* PREFSMAN->m_bUpdateCheckEnable (do this later) */ 0 ) if( /* PREFSMAN->m_bUpdateCheckEnable (do this later) */ 0 )
{ {
// TODO - Aldo_MX: Use PREFSMAN->m_iUpdateCheckIntervalSeconds & PREFSMAN->m_iUpdateCheckLastCheckedSecond // TODO - Aldo_MX: Use PREFSMAN->m_iUpdateCheckIntervalSeconds & PREFSMAN->m_iUpdateCheckLastCheckedSecond
@@ -1115,7 +1116,7 @@ int sm_main(int argc, char* argv[])
LOG->Info( "Unable to check for updates. The server might be offline." ); LOG->Info( "Unable to check for updates. The server might be offline." );
} }
} }
#endif
if( GetCommandlineArgument("dopefish") ) if( GetCommandlineArgument("dopefish") )
GAMESTATE->m_bDopefish = true; GAMESTATE->m_bDopefish = true;
+1 -1
View File
@@ -202,7 +202,7 @@ static void child_process()
fprintf( CrashDump, "%s%s crash report", PRODUCT_FAMILY, product_version ); fprintf( CrashDump, "%s%s crash report", PRODUCT_FAMILY, product_version );
#if defined(HAVE_VERSION_INFO) #if defined(HAVE_VERSION_INFO)
fprintf( CrashDump, " (build %lu, %s @ %s)", version_num, version_date, version_time ); fprintf( CrashDump, " (build %s, %s @ %s)", ::sm_version_git_hash, version_date, version_time );
#endif #endif
fprintf( CrashDump, "\n" ); fprintf( CrashDump, "\n" );
fprintf( CrashDump, "--------------------------------------\n" ); fprintf( CrashDump, "--------------------------------------\n" );