mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
Fix dumping
This commit is contained in:
parent
abe4675477
commit
ab2ff18290
2 changed files with 18 additions and 18 deletions
|
@ -77,7 +77,6 @@ void MainWindow::emuThreadMainLoop() {
|
|||
}
|
||||
|
||||
needToLoadROM.store(false, std::memory_order::seq_cst);
|
||||
emu->dumpRomFS("");
|
||||
}
|
||||
|
||||
emu->runFrame();
|
||||
|
@ -105,8 +104,8 @@ void MainWindow::selectROM() {
|
|||
return;
|
||||
}
|
||||
|
||||
auto path = QFileDialog::getOpenFileName(
|
||||
this, tr("Select 3DS ROM to load"), {}, tr("Nintendo 3DS ROMs (*.3ds *.cci *.cxi *.app *.3dsx *.elf *.axf)"), {});
|
||||
auto path =
|
||||
QFileDialog::getOpenFileName(this, tr("Select 3DS ROM to load"), "", tr("Nintendo 3DS ROMs (*.3ds *.cci *.cxi *.app *.3dsx *.elf *.axf)"));
|
||||
|
||||
if (!path.isEmpty()) {
|
||||
romToLoad = path.toStdU16String();
|
||||
|
@ -195,5 +194,5 @@ void MainWindow::dumpRomFS() {
|
|||
}
|
||||
|
||||
std::filesystem::path path(folder.toStdU16String());
|
||||
//RomFS::DumpingResult res = emu->dumpRomFS(path);
|
||||
RomFS::DumpingResult res = emu->dumpRomFS(path);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue