I believe localtime returns NULL on XBox when system clock is not set
This commit is contained in:
@@ -118,9 +118,13 @@ RageLog::RageLog()
|
|||||||
time(&cur_time);
|
time(&cur_time);
|
||||||
const struct tm *now = localtime(&cur_time);
|
const struct tm *now = localtime(&cur_time);
|
||||||
|
|
||||||
this->Trace( "Log starting %.4d-%.2d-%.2d %.2d:%.2d:%.2d",
|
if ( now )
|
||||||
1900+now->tm_year, now->tm_mon, now->tm_mday, now->tm_hour, now->tm_min, now->tm_sec );
|
{
|
||||||
this->Trace( " " );
|
this->Trace( "Log starting %.4d-%.2d-%.2d %.2d:%.2d:%.2d",
|
||||||
|
1900+now->tm_year, now->tm_mon, now->tm_mday, now->tm_hour, now->tm_min, now->tm_sec );
|
||||||
|
this->Trace( " " );
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(HAVE_VERSION_INFO)
|
#if defined(HAVE_VERSION_INFO)
|
||||||
this->Info("Compiled %s (build %lu)", version_time, version_num);
|
this->Info("Compiled %s (build %lu)", version_time, version_num);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user