MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / openROMSegments

Method openROMSegments

gui/qt/romselection.cpp:97–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95}
96
97void RomSelection::openROMSegments() {
98 QFileDialog dialog(this);
99
100
101 dialog.setDirectory(m_dir);
102 dialog.setFileMode(QFileDialog::ExistingFiles);
103 dialog.setNameFilter(QStringLiteral("ROMData (*.8xv *.8Xv *.8xV .8XV)"));
104
105 if (!dialog.exec()) {
106 return;
107 }
108
109 m_dir = dialog.directory();
110
111 m_segs = dialog.selectedFiles();
112 parseROMSegments();
113}
114
115void RomSelection::parseROMSegments() {
116 FILE *fd;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected