| 307 | } |
| 308 | |
| 309 | void CChunkRenderText::StoreSongListChunk(const CChunk *pChunk) |
| 310 | { |
| 311 | std::string str = GetLabelString(pChunk->GetLabel()) + ":\n"; |
| 312 | |
| 313 | for (int i = 0; i < pChunk->GetLength(); ++i) { |
| 314 | str += "\t.word " + GetLabelString(pChunk->GetDataPointerTarget(i)) + "\n"; |
| 315 | } |
| 316 | |
| 317 | m_songListStrings.push_back(std::move(str)); |
| 318 | } |
| 319 | |
| 320 | void CChunkRenderText::StoreSongChunk(const CChunk *pChunk) |
| 321 | { |
nothing calls this directly
no test coverage detected