MCPcopy Create free account
hub / github.com/HertzDevil/0CC-FamiTracker / CreateNES

Method CreateNES

Source/ExportDialog.cpp:256–266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

254}
255
256void CExportDialog::CreateNES()
257{
258 CFamiTrackerDoc *pDoc = CFamiTrackerDoc::GetDoc();
259
260 WithFile(pDoc->GetFileTitle(), [&] (CSimpleFile &OutputFile) {
261 CWaitCursor wait;
262
263 CCompiler Compiler(*pDoc->GetModule(), std::make_unique<CEditLog>(GetDlgItem(IDC_OUTPUT)));
264 Compiler.ExportNES(OutputFile, IsDlgButtonChecked(IDC_PAL) == BST_CHECKED);
265 });
266}
267
268void CExportDialog::CreateBIN()
269{

Callers

nothing calls this directly

Calls 3

GetFileTitleMethod · 0.80
GetModuleMethod · 0.80
ExportNESMethod · 0.80

Tested by

no test coverage detected