| 439 | } |
| 440 | |
| 441 | void CCompiler::ExportASM(CSimpleFile &file) { |
| 442 | if (!CompileData()) |
| 443 | return; |
| 444 | ExportBIN_ASM(file, nullptr, true); // // // |
| 445 | } |
| 446 | |
| 447 | void CCompiler::SetMetadata(std::string_view title, std::string_view artist, std::string_view copyright) { // // // |
| 448 | title_ = conv::utf8_trim(title.substr(0, CFamiTrackerModule::METADATA_FIELD_LENGTH - 1)); |
no outgoing calls
no test coverage detected