\n" );
f.PutLine( ssprintf("
\n",
- pSong, // use song pointer value as the hash
+ pSong, // use pointer value as the hash
pSong->GetFullDisplayTitle().c_str()) );
PRINT_LINE_S( "Artist", pSong->GetDisplayArtist() );
PRINT_LINE_S( "GroupName", pSong->m_sGroupName );
@@ -1029,7 +1031,8 @@ void ProfileManager::SaveStatsWebPageToDir( CString sDir, MemoryCard mc )
if( pSteps->IsAutogen() )
continue; // skip autogen
f.PutLine( "
\n" );
- f.PutLine( ssprintf("
%s - %s
\n",
+ f.PutLine( ssprintf("
\n",
+ pSteps, // use pointer value as the hash
GAMEMAN->NotesTypeToString(pSteps->m_StepsType).c_str(),
DifficultyToString(pSteps->GetDifficulty()).c_str()) );
PRINT_LINE_I( "NumTimesPlayed", pSteps->m_MemCardDatas[mc].iNumTimesPlayed );