| 211 | } |
| 212 | |
| 213 | void CChunkRenderText::StoreInstrumentListChunk(const CChunk *pChunk) |
| 214 | { |
| 215 | // Store instrument pointers |
| 216 | std::string str = GetLabelString(pChunk->GetLabel()) + ":\n"; |
| 217 | |
| 218 | for (int i = 0; i < pChunk->GetLength(); ++i) |
| 219 | str += "\t.word " + GetLabelString(pChunk->GetDataPointerTarget(i)) + "\n"; |
| 220 | |
| 221 | m_instrumentListStrings.push_back(std::move(str)); |
| 222 | } |
| 223 | |
| 224 | void CChunkRenderText::StoreInstrumentChunk(const CChunk *pChunk) |
| 225 | { |
nothing calls this directly
no test coverage detected