| 337 | } |
| 338 | |
| 339 | void CChunkRenderText::StoreFrameListChunk(const CChunk *pChunk) |
| 340 | { |
| 341 | // Pointers to frames |
| 342 | std::string str = "; Bank " + conv::from_uint(pChunk->GetBank()) + "\n"; |
| 343 | str += GetLabelString(pChunk->GetLabel()) + ":\n"; |
| 344 | |
| 345 | for (int i = 0; i < pChunk->GetLength(); ++i) { |
| 346 | str += "\t.word " + GetLabelString(pChunk->GetDataPointerTarget(i)) + "\n"; |
| 347 | } |
| 348 | |
| 349 | m_songDataStrings.push_back(std::move(str)); |
| 350 | } |
| 351 | |
| 352 | void CChunkRenderText::StoreFrameChunk(const CChunk *pChunk) |
| 353 | { |
nothing calls this directly
no test coverage detected