diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 8428fb1ef4..e2a0685d02 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -240,9 +240,6 @@ void RageLog::Write( int where, const CString &line ) if( where&WRITE_TO_INFO && g_fileInfo.IsOpen() ) g_fileInfo.PutLine( str ); - if( HOOKS ) - HOOKS->Log( str, where & WRITE_TO_INFO ); - if( where & WRITE_TO_INFO ) AddToInfo( str ); AddToRecentLogs( str ); diff --git a/stepmania/src/arch/ArchHooks/ArchHooks.h b/stepmania/src/arch/ArchHooks/ArchHooks.h index d16227ddfe..b3769103c4 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks.h +++ b/stepmania/src/arch/ArchHooks/ArchHooks.h @@ -22,9 +22,6 @@ protected: void IgnoreMessage( CString ID ); public: - /* This receives all logs. 'important' is set for Warn and Info. */ - virtual void Log(CString str, bool important) { } - /* This is called as soon as SDL is set up, the loading window is shown * and we can safely log and throw. */ virtual void DumpDebugInfo() { }